I am using a bookmarklet to load an html page which all works great, but, doesn\'t look so hot due to browsers generally being ugly around the outside!
Is there a way t
Simplest, most light-weight solution would be to use window.open
.
Something like the following will display a 600x250 window in the middle of the screen. Only the titlebar will show, which can show the title of the window.
Paste this in your browser's URL field to try it out:
javascript:(function()%7Bvar%20d=document;window.open('http://stackoverflow.com','_blank','width=600,height=250,left='+(screen.width/2-300)+',top='+(screen.height/2-125))%7D)();