Does anyone know the code to open a new window with the URL bar hidden when a link is clicked? Thanks
Try something like this: <html> <body> <a href="#" onclick="window.open( 'http://www.google.com', 'name', 'location=no,scrollbars=yes,status=no,toolbar=yes,resizable=yes' )">Google</a> </body> </html> Code (markup):