Forum: HTML and CSS Aug 14th, 2006 |
| Replies: 3 Views: 1,009 some mistake, function disableSub :
..
function disableSub() {
for (var i= 0; i< arguments.length; i++)
checkSub(false, arguments[i]);
}
.. |
Forum: JavaScript / DHTML / AJAX Aug 14th, 2006 |
| Replies: 2 Views: 4,202 id names (which you are using via document.getElementById(name)) are case sensitive. you named your div with id="NonUS", in your javascript you used ..getElementById("NonUs")..
furthermore, you... |
Forum: HTML and CSS Aug 14th, 2006 |
| Replies: 3 Views: 1,009 you should better use select and optgroup:
<select name="abc">
<optgroup label="Closely held company">
<option value="..">Sole Proprietor</option>
<option... |