Advertisement
asadsuman

Virg Dub

May 21st, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <!--When Scrolling down a div area position will be fixed and when scroll top it will same position -->
  2.  
  3. <script type="text/javascript">
  4. $(document).scroll(function () {
  5. var y = $(this).scrollTop();
  6. if (y > 10) {
  7. $('.single_contact').css({
  8. 'position' : 'fixed',
  9. 'top' : '0',
  10. 'z-index' : '1000'
  11. });
  12. } else {
  13. $('.single_contact').css({
  14. 'top' : 'auto',
  15. 'position' : 'auto',
  16. 'z-index' : 'auto'
  17. });
  18. }
  19.  
  20. });
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement