I want to do the jQuery POST every 5 seconds with different POST values from a RS. The following code works but the function waits 5 seconds and sends all the data in the POST at once, instead of sending one POST, wait 5 sec, send next POST, wait 5 sec, etc.. I've been struggling with this for a week. I tried a setinterval and also an array, but nothing. Any help will be highly appreciated.
<% while ((Repeat1__numRows-- != 0) && (!varmin.EOF)) { %>
<script type="text/javascript">
$(document).ready(function() {
var phoneval = "<%=(varmin.Fields.Item("phone").Value)%>"
var smsval = "<%=checkinactive.Fields.Item("audio").Value%>"
setTimeout(function(){
$.post("Trigger.aspx", { phone: phoneval,
sms: smsval }, function(data) {
$("#status p").html(data);
});
},5000);
return false;
});
</script>
<% Repeat1__index++; varmin.MoveNext(); } %>
<script>sections that all fire at once 5 seconds after the page has finished loading, all posting their values back to the server. Is that correct? Furthermore I'd like to ask what exactly you are doing with this, as this seems rather nonsensical. – deceze Dec 8 '10 at 6:01