jQuery(document).ready(function() {
$(document).on('change', "#LevelId0", function() {
if (hasFullAccess) {
alert("oy");
} else {
alert("oi"); // var currentYear = (new Date).getFullYear();
// $(".bound").val("01/01/" + (currentYear + 1));
//$(".EffectiveDateClass").val("01/01/"+(currentYear +1));
}
});
});
что вы действительно хотите, возможно:
jQuery(document).ready(function() {
$(document).on('change', "#LevelId0, #LevelId1", function() {
updateValues();
});
});
Что означает это предупреждение в $(document).ready(
:
alert(hasFullAccess);
РЕДАКТИРОВАТЬ: ИЗМЕНЕННАЯ ФУНКЦИЯ:
jQuery(document).ready(function() {
$(document).on('change', "#LevelId0", function() {
if (typeof hasFullAccess === "undefined") {
alert("oy");
} else {
alert("oi");
}
});
});