rejetto forum

Software => HFS ~ HTTP File Server => HTML & templates => Topic started by: DjNelutzu on September 01, 2010, 06:29:43 PM

Title: how to make a new page to be redirected from the site
Post 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
Title: Re: how to make a new page to be redirected from the site
Post by: rejetto on September 02, 2010, 09:21:15 PM
the easiest way is to add the "target" attribute to tag "a".
<a href='emoticons.html' target='emoticons'>see emoticons</a>
Title: Re: how to make a new page to be redirected from the site
Post by: TSG on September 03, 2010, 04:17:13 AM
This will make a popup window.

Code: [Select]
<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>