$( document ).ready(function() { // Handler for .ready() called. setMenuImageStyle(); }); $(window).resize(function() { setMenuImageStyle(); }); function setMenuImageStyle() { var mnuHeight = parseInt($("#sideMenu.active").height()); var mobile = $(".mobileNavItem").css("display"); if (isNaN(mnuHeight) == true) { mnuHeight=0; } else { mnuHeight=mnuHeight -10;} if (mobile!=="none") {mnuHeight=0; } // alert("mnuHeight: " + mnuHeight); $(".lineImg").css("padding-top", mnuHeight + "px"); }