function contentFade(action){ if(action === "in"){ $("#fadeDiv").show() }else{ $("#fadeDiv").hide() } } function sessionReload(){ $.ajax({ url: '/refreshSession', type: 'GET', success: function(){location.reload();}, error:function(){} }); } $(document).on('click', '.allChk', function (){ $(this).parents('table').find('[type="checkbox"]').prop("checked", this.checked); })