... Exactly -- you're adding *all the values* regardless of whether the box is "successful", i.e. checked. :-) Untested, but something like var b1 =...
... Exactly -- you're adding *all the values* regardless of whether the box is "successful", i.e. checked. :-) Untested, but something like var b1 =...
I have a form with three checkboxes, and want to set another variable depending on which boxes are checked. The boxes have values of 1, 2, and 4, and I want to...
Hi, I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate" software which...
... Exactly -- you're adding *all the values* regardless of whether the box is "successful", i.e. checked. :-) Untested, but something like var b1 =...
Update IE on the broken PCs, there is a fix from Microsoft on this issues. Also note: Java is *NOT* JavaScript. "This e-mail is from Reed Exhibitions (Gateway...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Mar 29, 2007 7:23 am
21068
Update IE on the broken PCs, there is a fix from Microsoft on this issues. Also note: Java is *NOT* JavaScript. "This e-mail is from Reed Exhibitions (Gateway...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Mar 29, 2007 8:34 am
21069
I have a form with three checkboxes, and want to set another variable depending on which boxes are checked. The boxes have values of 1, 2, and 4, and I want to...
Hi, I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate" software which...
Greetings all, it has been a very long time since I posted here :-) I have made a dynamic form builder and All I am doing is cloning a DIV that contains some...
... Yep :-) But I, at least, wouldn't hazard the wildest quess about your issue without test case code that demonstrates the failure. Hint. :-) -- Hassan...
I did wonder as the last post was 29th March. It turned out to be something in the CSS causing it as getting rid of the stylesheet fixes the problem, now I...
I have some code that adds a new row of INPUT fields to a form when a button is pressed. I use the following line to assign an onchange eventhandler. ...
I downloaded VS Web Developer Edition. It wasn't obvious how to use (or even find) the debugger on an existing page. Today I found this webpage (link below)...
I am displaying/hiding a DIV by changing visibility between visible and hidden when the user mouses over a link. So, when the user hovers over this link, a...
This is an age old known issue, you have to switch them off when the DIV is shown. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, ...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Jun 12, 2007 8:44 pm
21080
Thanks. Now I won't waste a ton of time looking for an answer. By "switch them off when the DIV is shown", do you mean to hide the SELECT objects? ... the DIV...
Yep, exactly you have to hide those elements in order for you div not take go behind. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, ...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Jun 12, 2007 10:07 pm
21082
Hi All, I am facing issues with IE 7. If I have a simple page with the following content: <html><body><script> var aaa = new Object(); aaa.data = "bbb"; //......
i have a js file which reads data from my database in utf8 format, unless i convert the data to unicode format it could not be shown on my web pages and since...
This is probably a dumb question, but I'm a js dummie, so forgive me. The idea is I want to have a stylesheet for all users (both with and without js), and...
... document.write is (IMO) clumsy and ugly, and doesn't work in a true XHTML page. Forget you ever heard of it :-) Alternatives: 1) directly manipulate the...
This form allows a customer to choose a shipping option. While it submits the form, no matter which button is selected, the same value is always submitted. ...
... From: "tmallan" ... Hi tmallan, This group doesn't seem to be very active of lately, though there seems to be quite a few group members. I'm a newbie at...
You are making a big mistake. Just do a onclick="Ship_Option(this.form)" on each item And inside the function function Ship_Option(form) { form.submit(); } You...
I've been searching all over the place, but can't seem to find an example of what I'm trying to do. Hoping someone here can point me in the right direction. ...