Please help!!!

Joined
Dec 5, 2007
Messages
42
Reaction score
2
Points
8
on my portfolio I have this link

<a href="Pixel Town Portfolio.html"target="_blank" onclick="window.open('Pixel Town Portfolio.html', 'mywindow', 'width=800,height=496,resizable=no');"><img src="entry.jpg" width="332" height="90"/></a>

when I click on it it opens up two versions of the same page; one is just how I want it in a fixed sized window, the other the same page in a full size window, which I do not want!

Any advice on how to clear this up? can you see any problems with it?
 
Joined
May 1, 2008
Messages
15
Reaction score
0
Points
1
replace the
Code:
<a href="Pixel Town Portfolio.html"target="_blank"
with
Code:
<a href="javascript:;"

whats happening is you're (sort of) linking to the page twice -


on my portfolio I have this link

<a href="Pixel Town Portfolio.html"target="_blank" onclick="window.open('Pixel Town Portfolio.html', 'mywindow', 'width=800,height=496,resizable=no');"><img src="entry.jpg" width="332" height="90"/></a>

when I click on it it opens up two versions of the same page; one is just how I want it in a fixed sized window, the other the same page in a full size window, which I do not want!

Any advice on how to clear this up? can you see any problems with it?
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top