|
If i have the following code
Code:
*Note the red-colored items:
function dateDiff(varfirst,varnext,target)
url=?varfirst="+varfirst+"&varnext="+varnext;
function stateChanged()
{
if (xmlHttp.readyState==4)
{
document.getElementById('target').value=xmlHttp.re sponseText;
How can I get the 3rd value from the function into the getElementById value?
|