Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. (function($) {
  2. $(document).ready(function() {
  3.  
  4. $(window).resize(function() {
  5. //do something
  6. var width = $(document).width();
  7. if (width < 900) {
  8. $('div#frame-1').css('bottom', 1900);
  9. $('div#frame-1').attr('data-ps-vertical-position', '1900');
  10. } else if (width > 901) {
  11. $('div#frame-1').css('bottom', 2500);
  12. $('div#frame-1').attr('data-ps-vertical-position', '2500');
  13. }
  14. }).resize();
  15. });
  16. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement