function initAppFileForm() { $('input#showInMenu,input#showOnPage').click(function () { appFileShowChanged(); }); appFileShowChanged(); } function appFileShowChanged() { var showInMenu = $('input#showInMenu:checked').size(); var showOnPage = $('input#showOnPage:checked').size(); if (!showInMenu && !showOnPage) { $('#idPage-label').hide(); $('#idPage-element').hide(); } else { $('#idPage-label').show(); $('#idPage-element').show(); } }