Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Different results

Arunas
Posts: 21
Joined: Sat Feb 07, 2015 11:19 pm

Different results

Unread post by Arunas »

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');
}
}
You do not have the required permissions to view the files attached to this post.
Post Reply