OZONE Asylum
Forums
DHTML/Javascript
Why is my document found to be null?
This page's ID:
30417
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
I want to display data retrieved by ajax. For starters, I just echo back from php a number. Javascript, however, finds my document (in bold below) to be null. Curiously, this code elsewhere in my script works just fine. Can you maybe see where in my code below I've erred? function grabItemHist() { http = getHTTPObject(); var item = document.getElementById("itemid").value; url = "ajaxGrabItemHist.php?itemid=" + item; http.open("GET", url, true); http.onreadystatechange = showItemHist; http.send(null); } function showItemHist() { if (http.readyState == 4) { var results = http.responseText; itemWin=window.open('','itemscr','height=300,width=350'); var tmp = [B]itemWin.document[/B]; tmp.write('<html><head><title>Item History</title></head>'); tmp.write('<body><p>Items:</p>'); tmp.write('<p>Found this many items: '+results+'</p>'); tmp.write('</body></html>'); tmp.close(); if (window.focus) {itemWin.focus()} } }
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »