(function($) { var document_width, document_height; // start the jquery function jQuery(document).ready( function() { document_width = $( document ).width(); document_height = $( document ).height(); responsiveTooltipShift(); }); jQuery(document).on("load", function() { document_width = $( document ).width(); document_height = $( document ).height(); responsiveTooltipShift(); }); jQuery(window).resize( function() { if( document_width !== $( document ).width() || document_height !== $( document ).height() ) { document_width = $( document ).width(); document_height = $( document ).height(); responsiveTooltipShift(); } }); function responsiveTooltipShift() { } })(jQuery);