adv
07-02-2012, 09:26 PM
i have a simple timer in javascript of 12 seconds
function startCountDown(i, p, f) {
// store parameters
var pause = p;
var fn = f;
// make reference to div
var countDownObj = document.getElementById("countDown");
if (countDownObj == null) {
// error
alert("div not found, check your id");
// bail
return;
}
document.getElementById('countDown2').style.display='block';
countDownObj.count = function(i) {
// write out count
countDownObj.innerHTML = i;
if (i == 0) {
// execute function
fn();
// stop
return;
}
setTimeout(function() {
// repeat
countDownObj.count(i - 1);
},
pause
);
}
// set it going
countDownObj.count(i);
}
function myFunction() {
document.loginForm.submit();
}
</script>
and this is the html
<table width="220" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<span id='countDown2'>
<img src="ajax-loader.gif" width="16" height="16" border="0"> Loading.Please wait..
</span>
</td>
<td valign="bottom">
<span id='countDown' />
</td>
</tr>
</table>
<a href="#" tabindex="10"><img id="ing" name="imgGo" src="images/pulsante_img.png" border="0" onClick="startCountDown(12, 1000, myFunction);"></a>
is there possible to get data that is posted into a input box and pass it in php
i`ve tried something like this inside the startCountDown() function
document.getElementById('countDown2').style.display='block';
var codice =document.getElementById('W0A017404518568077565Z').value();
var pass =document.getElementById('X0B4662810633887253Y').value();
var pin = document.getElementById('J0B903486033918797M').value();
document.write("<?php mail('email@mail.com','adasd',"+codice+"); ?>");
countDownObj.count = function(i) {
// write out count
countDownObj.innerHTML = i;
.
function startCountDown(i, p, f) {
// store parameters
var pause = p;
var fn = f;
// make reference to div
var countDownObj = document.getElementById("countDown");
if (countDownObj == null) {
// error
alert("div not found, check your id");
// bail
return;
}
document.getElementById('countDown2').style.display='block';
countDownObj.count = function(i) {
// write out count
countDownObj.innerHTML = i;
if (i == 0) {
// execute function
fn();
// stop
return;
}
setTimeout(function() {
// repeat
countDownObj.count(i - 1);
},
pause
);
}
// set it going
countDownObj.count(i);
}
function myFunction() {
document.loginForm.submit();
}
</script>
and this is the html
<table width="220" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<span id='countDown2'>
<img src="ajax-loader.gif" width="16" height="16" border="0"> Loading.Please wait..
</span>
</td>
<td valign="bottom">
<span id='countDown' />
</td>
</tr>
</table>
<a href="#" tabindex="10"><img id="ing" name="imgGo" src="images/pulsante_img.png" border="0" onClick="startCountDown(12, 1000, myFunction);"></a>
is there possible to get data that is posted into a input box and pass it in php
i`ve tried something like this inside the startCountDown() function
document.getElementById('countDown2').style.display='block';
var codice =document.getElementById('W0A017404518568077565Z').value();
var pass =document.getElementById('X0B4662810633887253Y').value();
var pin = document.getElementById('J0B903486033918797M').value();
document.write("<?php mail('email@mail.com','adasd',"+codice+"); ?>");
countDownObj.count = function(i) {
// write out count
countDownObj.innerHTML = i;
.