I am scratching my head about this one... I have a script that is trying to remove a <SELECT> node from the DOM using the remove() function. It chokes when the script runs, though. To be more specific, Firefox is kicking out the following error:
uncaught exception: [Exception... "Not enough arguments" nsresult: "0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)" location: "JS frame :: http://127.0.0.1/javascript/selectTest.html :: go :: line 85" data: no] It can be very easily replicated with the following: <a href='javascript:$("select").remove();'>run</a> <select id='select' name='browser'> <option value='ie'>IE</option> <option value='ff'>FireFox</option> <option value='o'>Opera</option> </select> I am using a build from the latest SVN version. Does anyone have any ideas? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" 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/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
