I\'ve got a dialog that performs a calculation that is dependant on three input fields. When any of them are changed it checks whether they are all filled and if they are i
Please try with using each instead of change / click , which is working fine even first time in IE as well as other browsers
Not Working a first time
$("#checkboxid").change(function () { });
Working fine even first time
$("#checkboxid").each(function () { });