rejetto forum
Software => HFS ~ HTTP File Server => HTML & templates => Topic started by: DjNelutzu on September 01, 2010, 06:29:43 PM
-
how to make a new page to be redirected from the site,example admin panel but the page will open in a popup window
page that I want to create is for emoticons in shoutbox
please help
-
the easiest way is to add the "target" attribute to tag "a".
<a href='emoticons.html' target='emoticons'>see emoticons</a>
-
This will make a popup window.
<a href="javascript:void(0);" onclick="window.open('LOCATION','NAME','width=640,height=480,left=100,top=100,scrollbars=1,resizable=1');">
OPEN POP-UP WINDOW
</a>