This is my first question, and I would appreciate you answering soon.
I would like code to repeat a function continuously... I have tried some code but it hasn\'t worked
How about some good ol' fashion recursion?
function getStuff() { $('#more').load('exp1.php', function() { getStuff(); }); } getStuff();
Demo: http://jsfiddle.net/Zn2rh/1/