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
Just throwing it out there:
function doRequest() { $.ajax({ url: 'exp1.php', timeout: 1000, success: function(data) { $('#more').html(data); doRequest(); } }); }