Guest User

Untitled

a guest
Nov 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <!-- Menu Sicky Start -->
  2. <script type="text/javascript">
  3. jQuery.noConflict();
  4. (function( $ ) {
  5. $(function() {
  6. // More code using $ as alias to jQuery
  7. var mn = $(".header");
  8. mns = "menu_sticky_now";
  9. //hdr = $('.header').height();
  10. hdr = 0;
  11.  
  12. $(window).scroll(function() {
  13. if( $(this).scrollTop() > hdr ) {
  14. mn.addClass(mns);
  15. } else {
  16. mn.removeClass(mns);
  17. }
  18. });
  19. // More code using $ as alias to jQuery
  20. });
  21. })(jQuery);
  22. </script>
  23. <!-- Menu Sicky End -->
Add Comment
Please, Sign In to add comment