Hi I have a simple form I want to auto submit every 10 seconds
I want the submit it with out refreshing the whole page.
i.e. I tried the following but it refreshes the whole page first
function setup(){
window.setInterval("submitform()",10000);
}
function submitform()
{
document.forms[0].submit();
}
I want the submit it with out refreshing the whole page.
i.e. I tried the following but it refreshes the whole page first
function setup(){
window.setInterval("submitform()",10000);
}
function submitform()
{
document.forms[0].submit();
}