Is there a way to get an elementbyid from using http.responsetext?
Thanks!
httpresponseText
Moderator: General Moderators
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Re: httpresponseText
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);
}