I am not sure I may have found an issue.
On FF35
Does not work:
var dd = $('some_dropdown');
dd.remove(); - I end up in emptyFunction
Does work:
var dd = $('some_dropdown');
Element.remove(dd);
<select id="some_dropdown" style="width: 135px;" name="some">
<option selected="" value="VAL">ValText</option>
</select>
BUT I was able to make the element.remove() calls on elements that
were not selects.
--
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.