Hi.
I have Check Box and its event Onchange. When I check Check Box on IE or Edge I get one result (wrong), when check on Chrome or Mozilla - other (correct). Why?
My Function:
function CheckBox_event() {
if ($('#CheckBox').val() == 0) {
$('#Text1').prop('readonly',true);
$('#Text1').css('background-color','silver');
$('#Text1').val(0).change();
} else {
$('#Text1').prop('readonly',false);
$('#Text1').css('background-color','white');
}
}
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Different results
-
- Posts: 21
- Joined: Sat Feb 07, 2015 11:19 pm