Press "Enter" to skip to content

A Simple and Easy jQuery to Make Any HTML Element Sticky on Scroll | jquery.sticky.js

jquery sticky is a simple jQuery extension to make any HTML element scroll constant and this plugin makes it possible to lock the position of any element when it reaches the top of the page while scrolling down.

How to make use of it:

1. Get began by loading the jQuery sticky.js plugin after the most recent jQuery library.

<script src="/path/to/cdn/jquery.min.js"></script>
<script src="/path/to/jquery.sticky.js"></script>

2. Attach the function sticky to the factor which needs to be fastened on the highest whereas scrolling.

<nav class="navbar">
  ...
</nav>
jQuery('.card').sticky({
  offsetY: 90
});

3. Apply an offset to the sticky component (like sidebar widget) in instances the place you may have a sticky navbar.

<aside class="card">
  ...
</aside>
jQuery('.card').sticky({
  offsetY: 90
});

4. Determine whether or not or to not use the factor’s outer width.

jQuery('.card').sticky({
  outerWidth: true
});

5. Specify the z-index of the factor when it will get stuck.

jQuery('.card').sticky({
  zIndex: 9999
});

6. Apply a further CSS class to the factor when it will get stuck.

jQuery('.card').sticky({
  cssClass: 'myClass'
});

7. Disable the sticky conduct when needed.

jQuery('.card').sticky('destroy');

Pin Any Element To The Top Of Page When Scrolling, jQuery Sticky Plugin/Github

sticky-top-jquery-demo


See Demo And Download

Official Website(AchalJ): Click Here

This superior jQuery/javascript plugin is developed by AchalJ. For extra Advanced Usages, please go to the official website.

Be First to Comment

    Leave a Reply

    Your email address will not be published. Required fields are marked *