Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

open small window script 2

Status
Not open for further replies.

flasher

Technical User
Mar 4, 2002
245
US
Hi, I can't believe such a simple thing is not working.. all I want to do is be able to click a button on my page and have it open a new small window.. I can do this fine with a text link but somehow this image is not working. Does anyone know the code and where to insert it?

The page is The button image that will trigger the window is the round circle that says Mission Statement.

The image to appear in the window is called mission.gif and its size is 310x154.. Much appreciated!
 
The first problem is the link:
a href="#"

you need to call a javascript function here that will load a new window. DeZiner
Never be afraid to try something new.
Remember that amateurs built the Ark.
Professionals built the Titanic
 
Can you be a bit more specific? I'm not sure I follow..
 
This goes in between the head tags
Code:
<script language=javascript type=&quot;text/javascript&quot;>
<!-- Hide script from old browsers
function newWindow(portgif) {
portWindow = window.open(portgif, 'portWin', 'width=285,height=450,scrollbars=yes, right='+rightPos+' ,top=0')
portWindow.focus()
}
rightPos=0
if (screen) {
rightPos=screen.width-225
}
//End hiding script fom old browsers -->
</script>
This is your link
Code:
<a href=&quot;javaScript:newWindow('mission_statement.htm')&quot;><img src=&quot;mission.gif&quot;></a>
DeZiner
Never be afraid to try something new.
Remember that amateurs built the Ark.
Professionals built the Titanic
 
hey guys, in this FAQ you should be able to find the answers to pretty much everything on popups etc..
faq216-2034

hope that helps out A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top