Advertisement
OmgImAlexis

Untitled

May 6th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $(document).ready(function(){
  2. if (window.location.pathname.split( '/' )[1] == 'post'){
  3. $(window).on("scroll",function(e){
  4. if($(window).scrollTop() + $(window).height() > $(document).height() - 100) {
  5. var a = $('.more_notes_link')[0];
  6. var e = document.createEvent('MouseEvents');
  7. e.initEvent( 'click', true, true );
  8. a.dispatchEvent(e);
  9. }
  10. });
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement