Open browser to FULL SCREEN??
My Movies.asp page has an image and this is the code.
<a href="Cover3.asp?MovieCodeVar=<%=rs(0).Value%>&ImageCodeVar=<%=rs(2).Value%>" target="_blank"><img src="thumbnails3/<%=rs(1).Value%>" width="200" height="140"></a>
How to make Cover3.asp open to FULL SCREEN when users click on above image?
My code works perfectly right now except it is not open to FULL SCREEN in IE.
Please help by providing working code. (eg. onclick javascript??)
Thank you
Re: Open browser to FULL SCREEN??
Quote:
Originally posted by benette
My Movies.asp page has an image and this is the code.
<a href="Cover3.asp?MovieCodeVar=<%=rs(0).Value%>&ImageCodeVar=<%=rs(2).Value%>" target="_blank"><img src="thumbnails3/<%=rs(1).Value%>" width="200" height="140"></a>
How to make Cover3.asp open to FULL SCREEN when users click on above image?
My code works perfectly right now except it is not open to FULL SCREEN in IE.
Please help by providing working code. (eg. onclick javascript??)
Thank you
Use window.open method of Javascript.
The following works for IE, not sure about other browser,you may have to test it out.
http://javascript.internet.com/navig...ll-screen.html