Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--When Scrolling down a div area position will be fixed and when scroll top it will same position -->
- <script type="text/javascript">
- $(document).scroll(function () {
- var y = $(this).scrollTop();
- if (y > 10) {
- $('.single_contact').css({
- 'position' : 'fixed',
- 'top' : '0',
- 'z-index' : '1000'
- });
- } else {
- $('.single_contact').css({
- 'top' : 'auto',
- 'position' : 'auto',
- 'z-index' : 'auto'
- });
- }
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement