I Have some script that creates radio buttons, it works fine in IE but not in FF.
The problem is that I can't seem to select the radio button, I click on it but it doesnt become checked. Here is a snippet of my code
var formComponent = document.createElement("input")...
I found this:
http://www.backbase.com/demos/google/
And really like how it works, I was wonering if someone could let me know how this could be done. I have manageed to write code to get a dragable div for another project, but for this one it would be cool if it had a scrolling pane in the...
Hi,
I have some JS that creates a table
var docBody = document.getElementsByTagName("body").item(0);
docBody.appendChild(advancedSearchTable);
var advancedSearchTable = document.createElement("table");
// Create a table row
var row =...
Hi,
I was wondering if there was a way to force line wrapping in css or html. I want a cell to be a maximum of 200px, but sometimes the cell wraps round if a
really_long_word_without_any_sapces_in_it
is put into the cell.
So_for_example_it_would_wrap
here_then_carry_on_with_the
_word_here...
I was wondeirng if there was a better way to do an if statement.
I am looping thorugh an array, and I want to check to see if the current value is equal to a certain string. Here is my code:
var advancedSearchTable = document.createElement("table");
var labels = new Array('Modifier'...
I was wondering if tehre was a way to create a style object and the use this to set the styles for a bunch of different components. For example:
var styleObject = new style();
styleObject.backgroundColor = '#000000';
styleObject.text......
var advancedSearchTable =...
I was wondering if there was a way to align text to the center of a radio button, vertical-align:middle doesnt do anything, the text at the moment appears at the top or the bottom, and doesnt look great.
Thanks!
I have inheritied a database from a previous developer, however they did not document the contraints. I can view the contraints using:
select constraint_name, table_name, constraint_type from user_constraints;
and i get the following
CONSTRAINT_NAME TABLE_NAME...
Hi,
I have writen a web app, but the users want another use case implemented for it. They want to be able to view files from LiveLink - this is a entrise web based file management system.
To do this, I need to use functions in the LiveLink API, this can be done in either Java or C++.
I was...
Getting date 7 days from another date.
I am using
use Date::Calc
And I was wondering if there was a function to allow me to get the date in 7 days from another date (a string the user inputs input teh script)
I have checked the documentation and can't really find anything and I am a bit...
I have been looking into how I can figure whether a user has stopped typing in a text box, but so far I havent found a decent solution.
Basically I need a way to run a function after I am sure the user has stopped typing in the text box (but while the text box is still in focus)
Hi,
Is it possible to hide a div when the mouse is clicked anywhere on the page.
Basically I have a div popup that hovers by a form field when it has not been filled out, so when the user clicks anywhere else on the page, the div will disappear.
Thanks!
Hi,
I was wondering if there was a way to detect if javascript is enabled and if not, display a message, no matter how simple, just a message somewhere.
I dont want to have a message telling the user javascript is required, just want to tell them it is when its not enabled.
Is this even...
Hi,
Is there a way to replace line breaks in xsl with <br> tags?
Here is my template:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:choose>
<xsl:when test="count(root/child)...
I have the following code, it seems to work fine in FF, but in IE the head of teh div doesnt render properly and I cant drag it round the screen - does anyone have any ideas?
Thanks!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">...
Hi,
I was wondering if there was a way to get the windows user credentials (user and password) and log them into an internal web app I am building.
This will save the user having to log in each time, people often use different machines so using cookies is not a valid option. Plus I still need...
I have the following code:
[code]
bar.onmousedown = function(){ dragStart(event, 'helpDiv'); };
[\code]
But I get an error when running it that event is not defined. If I was 'this' then that works fine, it just wont allow me to pass the event object.
I was wondering if there was a way to do...
I want to check to see if a variable on an include page exists, is there an easy way to do this? at the oment I have:
<%
if (pageHeader != null) {
%>
<%= pageHeader %>
<%
} else {
%>
Doc ID Tool
<%
}
%>
I am using JRUN and I get teh following error once I try to use for loops or if statemnts:
500 javax/servlet/jsp/jstl/core/ConditionalTagSupport
Thats all I get, nothing else, so much for helpful error messages. Anyway, the code is well formed so its not that, any ideas?
Thanks!
I have a search field which fetches results and populates a div on the fly.
I was wondering which event type would be best for this. At th emoment I have onkeyup, but if the user is typing a long word, it can be quite slow as it perfroms the search on every key stroke.
I was wondering what...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.