httpresponseText
Posted: Sun Aug 27, 2006 9:23 am
Is there a way to get an elementbyid from using http.responsetext?
Thanks!
Thanks!
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Why not?GeXus wrote:Is there a way to get an elementbyid from using http.responsetext?
Thanks!
Code: Select all
var obj;
try {
obj = document.getElementById(http.responseText);
} catch (e) {
obj = false;
throw new Exception(e);
}