Search the archives!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Fw: [Javascript] script no longer working with new FF
- From: list at tridemail.de (Michael Borchers)
- Subject: Fw: [Javascript] script no longer working with new FF
- Date: Thu Nov 30 07:37:26 2006
> Reserved word maybe? Try renaming (attrName ?) > > Cutter > ________________ > http://blog.cutterscrossing.com > > Michael Borchers wrote: >> >>> the following script worked fine for switching several checkboxes, now, >>> i >>> guess since the new FF, it stopped working. >>> some kind of case-sensitive prob?! >>> >>> <input type="checkbox" name="checkBoxSelect" id="checkBoxSelect" >>> onclick="javascript:checkboxSwitch(this, 'whatever');" /> >>> >>> >>> function checkboxSwitch(thisCheckbox, checkboxSubstring) >>> { >>> if(thisCheckbox.checked == true) >>> { >>> var checked = true; >>> } >>> else >>> { >>> var checked = false; >>> } >>> >>> var checkboxField = document.getElementsByTagName("input"); >>> var checkboxFieldLength = checkboxField.length; >>> var SubstringLength = checkboxSubstring.length; >>> >>> for(c=0;c<checkboxFieldLength;c++) >>> { >>> var attributeName = checkboxField[c].getAttribute("name"); >>> var attributeNameLength = attributeName.length; >>> var SubstringStart = >>> parseFloat(attributeNameLength)-parseFloat(SubstringLength); >>> >>> if(attributeName.substring(SubstringStart, attributeNameLength) == >>> checkboxSubstring) >>> { >>> checkboxField[c].checked = checked; >>> } >>> } >>> } >> >> obviously it's a problem with the "attributeName" in FF, any ideas?! it was an input tag without a name="" so the result was null. error can be captured by adding if(attributeName != null) {} thanks anyway
- References:
- Fw: [Javascript] script no longer working with new FF
- From: Michael Borchers
- Fw: [Javascript] script no longer working with new FF
- From: Cutter (JS Related)
- Fw: [Javascript] script no longer working with new FF
- Prev by Date: Fw: [Javascript] script no longer working with new FF
- Next by Date: [Javascript] dynamically hide an element
- Previous by thread: Fw: [Javascript] script no longer working with new FF
- Next by thread: [Javascript] pb with httprequest and firefox
- Index(es):