PDA

View Full Version : brower size 400px 350px


andrew1234
02-14-2003, 08:20 AM
browser size 400px x 350px

Hi

when i click a link i want to make the
new window load a little picture

how do i make that new window load at 400px x 350px
and so i cannt be resized
and with out the tool bars and navigation at the top at the top

thanks

andrew

redhead
02-14-2003, 09:45 AM
umm... you could try generating one here:
http://javascriptkit.com/popwin/index.shtml

or praps a look in the "post a javascript" section for this one which does just what you want it...:
beetles popup image viewer (http://www.codingforums.com/showthread.php?threadid=9836) or spooksters popup image viewer (http://www.codingforums.com/showthread.php?threadid=1625)

there's alot of these things around... does that help?... :thumbsup:

l3vi
02-14-2003, 03:01 PM
var image = window.open("","Image","width=400px,height=350px")
image.document.write('<image src="image.*">')
That should work.