Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function($) {
- $(document).ready(function() {
- $(window).resize(function() {
- //do something
- var width = $(document).width();
- if (width < 900) {
- $('div#frame-1').css('bottom', 1900);
- $('div#frame-1').attr('data-ps-vertical-position', '1900');
- } else if (width > 901) {
- $('div#frame-1').css('bottom', 2500);
- $('div#frame-1').attr('data-ps-vertical-position', '2500');
- }
- }).resize();
- });
- })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment