EduardET

Untitled

Apr 2nd, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         $( window ).on( 'scroll', function() {
  5.             var scrollTop = $( window ).scrollTop()
  6.             if ( scrollTop > 0 ) {
  7.                 $( 'body.safari #page-container' ).addClass( 'et-fixed-header' )
  8.             } else {
  9.                 $( 'body.safari #page-container' ).removeClass( 'et-fixed-header' )
  10.             }
  11.         } )
  12.     } );
  13. } )( jQuery );
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment