Wow i just finished reading the 60+ view/source thread and found a GROOVY solution to your problem bombboy.
Pop this snippet into your browsers address bar :
javascript:alert(document.body.innerHTML);
Wicked!! :)
Is it possible to extract all the hyperlinks in an external webpage I open in a popup using Javascript and store them in a variable so that the string can be manipulated or is there a security issue with this too?
Which I see you've already tried :) so I would reinstall Internet Explorer.
I had this problem on my laptop and if I opened notepad first then went to view/source it worked.
I need to fill up an array so that it reads user1, user2, user3 etc.
My code looks like this :
<script>
var myname = new Array(11);
for (i=0; i<11;i++){
myname[i]=user+[i];
}
</script>
I keep getting a javascript error. Why is this syntax wrong?
Thanks,
No; that would go to a brand new blank web page NOT the window I submit the form to, which isn't what I want.
Anyway, I figured out how to do what I want but only with a manual link on the main page:
<form name="form1" method="post" target="popup"...
I have a main window that submits a form to a website and opens up the results in a new window,
the action of the form is an external webpage. :
<form name="form1" method="post" target="_blank" action="http://www.externalpage.com/external.asp" >
and I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.