Does anyone know why it is not disabled in jquery. That is, when I click the button. I want to click on the button (disabled = false)
$(document).ready(function(){
$("#b2").click(function(){
$("input").prop(disabled,false);
});
});
</script>
</head>
<body>
<input disabled="true">
<button id="b2">botao</button>
</body>