Started 3 days, 8 hours ago (2009-11-26 20:59:00)
by marian
Started 1 week, 1 day ago (2009-11-21 16:03:00)
by Winters
Four lines of CSS. Interesting.
Started 5 days, 16 hours ago (2009-11-24 12:57:00)
by Dameon51
Started 5 days, 13 hours ago (2009-11-24 16:22:00)
by haydenchambers
what exactly are you trying to achieve... starting with all the check boxes checked?
your
foreach loop repeats the ids of all those checkboxes which is a nono.. id's should be unique.
Started 3 days, 13 hours ago (2009-11-26 15:44:00)
by roughie
Started 1 week, 1 day ago (2009-11-22 04:01:00)
by f_nietzsche
Yes--you've got the idea. This will make sure, for example, that a user who has written new data to a page does not accidentally leave the page without saving the changes. This is the effect you're going for, right?
To do this you will need to attach events in two places:
1) The action of exiting a page;
2) Every link on the page (or particular links).
To do this, I ...
Started 1 week, 2 days ago (2009-11-21 05:20:00)
by haydenchambers
if you use fade you'll get a little jump in the list when the new <li> appears (before fading in) or disappears (after fading out)
when you create the <li> I would set its
initial state to display:none; then use slideDown
and in reverse use slideUp then when thats finished remove it
that way it remains visually smooth
Started 5 days, 22 hours ago (2009-11-24 06:48:00)
by mind_grapes
Started 5 days, 1 hour ago (2009-11-25 03:54:00)
by f_nietzsche
Before I write my observations about your code, I would like to be unbearably pedantic and tell you that Java and JavaScript are two
different languages and are by no means interchangeable or synonymous. [Wikipedia]
Code:
<div class="content about">
<p>Yada</p>
</div>
That div does not initially have a class of 'hide,' yet the JavaScript ...
Started 2 days, 14 hours ago (2009-11-27 15:24:00)
by kicken
Quote: Originally Posted by marian all i am getting from the above code is NaN
here is my code:
Code:
<input type="
checkbox" name="checkBoxSchools[]" onclick="return doMath('checkBoxSchools[]')">
What kind of value are you expecting? Your sample checkbox there has no value="" attribute, so it has no value.