what is wrong with this code
<script>
$(document).ready(function () {
$("#chkRead").change(function () {
if($(this).prop("checked", true ))
{
$('#txtFaisalaId').removeAttr("readonly")
}
else {
$('#txtFaisalaId').attr('readonly', true);
}
});
});
</script>