Trial Priority
I created infinite scrolling
My HTML Code
<div id="Container">
// search results goes here
</div>
To add data to the end
$(oneTuple).appendTo("#Container"); //oneTuple is information of one tuple of search results page
Prepare
$(oneTuple).appendTo("#Container");
Question: When I add data using appendTo, it changes the cursor position. Can I make sure my cursor doesn't change even if I add data
+3
source to share