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
Post a Comment