jquery - Disable a drop down and still submit a value? -


i have drop down box lock after item has been selected. unfortunately using 'disable' stops field being submitted @ when form submitted. there way around this?

you can re-enable dropdown list right before form submitted:

$("form").submit(function() {     $("#yourdropdown").prop("disabled", false); }); 

Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -