Displaying 1 result from an estimated 1 matches for "ns_error_xpc_not_enough_args".
2008 Jan 30
8
<select>.remove()
...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=''s...