Displaying 1 result from an estimated 1 matches for "responseobj".
2007 Oct 25
4
""throw $continue" is deprecated, use "return" instead"
...var name=$(''helloTxt'').value;
new Ajax.Request(
"Default3.aspx?name = "+encodeURI(name),
{
method:"get",
onComplete:function(xhr) {
var responseObj = eval("("+xhr.responseText
+")");
update(responseObj);
}
}
);
};
};
function update(obj) {
$(''helloTitle'').innerHTML = &q...