MARIO MOURA schrieb:
> Do you have a example?
> 
> $("#edit-taxonomy-6").change("value","0");
> 
> I am trying back to value=0
> 
> Regards
> 
> macm

Try this:

$('#edit-taxonomy-6').bind('change', function() {
     this.value = 0;
});

That will select the option that has the value 0. Although that doesn't 
seem to make any sense to me. You could as well simply disable the select.


-- Klaus

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to