hi
I use below code for textbox
<script type="text/javascript">
$(function () {
ApplyCss();
// if checked.
$('input[type=checkbox][id*=Chad]').on('ifChecked', function (event) {
$("#Txtmatn").removeAttr("disabled");
$("#Txtmatn").removeAttr('readonly');
$("#Txtmatn").focus();
});
// if uncheckd.
$('input[type=checkbox][id*=Chad]').on('ifUnchecked', function (event) {
$("#Txtmatn").attr('readonly', 'readonly');
});
I want when checked checkbox textbox's background color change to gray
how I can do it?
Best regards
neda