The un<event> can either remove just the handler passed to it as the first
function, or it can remove all events if you pass it no function.
> $( "#myradiobutton" ).attr( "onchange", "" ).change( function() { ... } );
Is the problem that you are attaching a new onchange event, and need to
clear the old one? If so this should work:
$( "#myradiobutton" ).change().change( function() { ... } );
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/