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!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Different results
-
- Posts: 21
- Joined: Sat Feb 07, 2015 11:19 pm