I can better explain it with Raw script.
<script>
$(document).ready(function () {
$("Div"). //lock div here
var condition=$("#value").val();
if(condition==true){unlock div here}
else{do nothing}
});
</script>
Is there any jquery widget i have to include?
By saying lock/unlock I mean Enable/Disable.
1 Answer