For a more in depth look at all the features, check out this web site: WebReference
|
Page 6
Some more example! For each, I've listed the code and have given you a link to "try it out"
1. Let's add scroll bars
http://www.trellix.com" onClick="window.open('http://www.trellix.com','myWindow','resizable,scrollbars,height=200,width=300'); return false
2. Let's reposition the window's location
http://www.trellix.com" onClick="window.open('http://www.trellix.com','myWindow','resizable,height=200,width=300,left=40,screenX=40,top=50,screenY=50'); return false
3. Let's reposition the window's location differently, and make the window bigger
http://www.trellix.com" onClick="window.open('http://www.trellix.com','myWindow','resizable,height=400,width=300,left=60,screenX=60,top=100,screenY=100'); return false
|