maxxwilliams
Regular Member
- Mar 28, 2011
- 200
- 153
Hi guys. I am looking for a pop up script that will open up pages on the internet. Pretty simple, but... I want them page that "pops up" to be scrolled down to a particular position.
Here is what I mean:
This above is a simple pop up code. But, if I insert a URL, it will open up at the top left position. I want it to open up, as soon as people click the link, at a particular spot on the URL.
If I were to use google . com and open that, I wouldnt want the page to open and show the "Images, Search, Play.." etc butons on the top. I would like for the pop up to be focused on the GOOGLE Logo, for instance.
Can anyone help me?
Here is what I mean:
Code:
<script language="javascript" type="text/javascript">
<!--function popitup(url) { newwindow=window.open(url,'name','height=200,width=150'); if (window.focus) {newwindow.focus()} return false;}// --> </script>
Code:
<a href="popupex.html" onclick="return popitup('popupex.html')"
>Link to popup</a>
This above is a simple pop up code. But, if I insert a URL, it will open up at the top left position. I want it to open up, as soon as people click the link, at a particular spot on the URL.
If I were to use google . com and open that, I wouldnt want the page to open and show the "Images, Search, Play.." etc butons on the top. I would like for the pop up to be focused on the GOOGLE Logo, for instance.
Can anyone help me?