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?
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,
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.