We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when I use 'html' or 'body" and resize the browser sliding left to right or right to left, nothing happens.
<!-- window resize detection event --> <script type="text/javascript"> var topnavbar = <?php echo $topnavbar; ?>; var myFunc = function(jQuery) { jQuery('body').css('border', '44px solid blue'); }; jQuery('html').resize(myFunc); //jQuery('body').removeResize(myFunc); </script>
what am I doing wrong?
The text was updated successfully, but these errors were encountered:
The documentation says:
It uses scroll events on most browsers, and the onresize event on IE10 and below.
My guess is that- since a horizontal resize won't trigger a scroll event- it also doesn't trigger the resize.
Sorry, something went wrong.
No branches or pull requests
when I use 'html' or 'body" and resize the browser sliding left to right or right to left, nothing happens.
what am I doing wrong?
The text was updated successfully, but these errors were encountered: