|
|||||||
| JavaScript JavaScript (not Java) Discussion and technical support, including AJAX and frameworks (JQuery, MooTools, Prototype...) |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
cannot get html by using document.innerHTML
i am getting no errors from the javascript however i still cannot use the html that is extracted by using then document.innerHTML method.
i have a page that decrypts a javascript encryption that i am using, so far i am able to decrypt and even write the output in another fram however i cannot get the html source code in an iframe one the same page as the decryption script. the page in the ifram is not a third party page. so far this is where i think its going wrong: PHP Code:
PHP Code:
PHP Code:
also the html in the iframe is a single line. i am sorry that i cannot post the actual whole script but it is far too large. Thanks Goran |
|
#2
|
||||
|
||||
|
Try using document.body.innerHTML instead.
|
|
#3
|
|||
|
|||
|
nup, no luck.
i tried changing it to: document.frames['test'].body.innerHTML; and to: document.body.frames['test'].innerHTML; any other way?? |
|
#4
|
||||
|
||||
|
document.frames['test'].document.body.innerHTML; |
|
#5
|
|||
|
|||
|
sorry, still nothing.....
could it be that it is getting the code but just not writing it out?? or is there another way?? thanks alot for your help |
|
#6
|
||||
|
||||
|
You're welcome. Try this:
Code:
alert(document.frames['test'].document.body.innerHTML); |
|
#7
|
|||
|
|||
|
hmmm, no alert message comes up at all, nor does an error??
i thought maybe you would need the iframe line i used Code:
<iframe src="test.htm" name="test"></iframe> ok when i modified it and changed the code to the following i got the alert and it said undefined Code:
<iframe src="test.htm" name="test"></iframe> <script>alert(document.frames['test'].document.innerHTML);</script> Last edited by druss; 12-17-2003 at 10:52 PM. |
|
#8
|
||||
|
||||
|
See attachment.
|
|
#9
|
|||
|
|||
|
ok, it worked. thanks alot
Goran |
|
#10
|
||||
|
||||
|
You're very welcome.
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|