I am using the following code which is working when the scroll bar reaches the botttom,
if($(window).scrollTop() == $(document).height() - $(window).height()){
I however want that the ajax is fired when i reached 70% of the scroll not 100.
|
I am using the following code which is working when the scroll bar reaches the botttom,
I however want that the ajax is fired when i reached 70% of the scroll not 100. |
|||||
|
|
Provided your current check is firing when scrolled to the page's bottom, you can try some basic arithmetics:
Make sure to add a check to don't fire multiple simultaneous Ajax requests, if you didn't already. This is rather out of the scope of the question, but if you want an example of how to prevent multiple requests from being fired simultaneously: Declare a global var, e.g. Then incorporate it in your function:
That's a simple example of using a var to keep track if there is an active Ajax request for your scroll function or not, and it doesn't interfere with any other concurring Ajax request which you may have. Edit: JSFiddle example Please note that using a % to measure the document height might be a bad idea, considering that the document's height will increase each time you load something, making it trigger the Ajax request being relatively more far from the bottom of the page (absolute-size wise). I'd recommend using a fixed value offset to prevent that (200-700 or so):
Example: JSFiddle Edit: To reproduce the issue in the first code with percentages, load 50 |
|||||||||||||||||||
|
|
A quick google search for
|
|||
|
|