2
Someone knows why they are not disabling the (disabled) property in jquery. That is, when you click the button.I want you to be (disabled=false)
$(document).ready(function(){
$("#b2").click(function(){
$("input").prop(disabled,false);
});
});
</script>
</head>
<body>
<input disabled="true">
<button id="b2">botao</button>
</body>
Thanks worked out
– thiago