Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   How can I make links re-direct in a new window? (https://thetfp.com/tfp/tilted-technology/12037-how-can-i-make-links-re-direct-new-window.html)

BoCo 06-15-2003 06:46 PM

How can I make links re-direct in a new window?
 
I have a few links on my site that link to other sites, but it does so in the same window. What HTML script do I have to write to make a new window open so the view will also stay at the original page at my site?

MrFlux 06-15-2003 06:49 PM

Code:

<a href="http://link" target="_blank">link</a>
think that should be right

EDIT: Bleh, the [code] tag doesn't work properly :(

grim reaper 06-15-2003 08:24 PM

you do
Code:

< a href=blah.html target=_new >link test< /a >
take out the additional spaces

Realizm 06-16-2003 07:02 AM

Excellent HTML resource.

http://werbach.com/barebones/barebones.html

eyeseepeedude 06-16-2003 07:16 AM

you can also do :: target="_blank" :: for this.

crazycousinjim 06-16-2003 01:58 PM

Check this out. It is a little more complex, but it alllows for a lot more flexibility.

PHP Code:

<html>
<
head>
<
title>PopUp For BoCo</title>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<
script language="JavaScript">
    function 
doPopUpurlStrnameopts )
    {
        
window.openurlStrnameopts );
    }
</script>
</head>

<body>
    <p>
        <a href="#" onClick="doPopUp( 'http://www.google.com', 'awindow', 'toolbar=no,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=400px,height=300px,left=50,top=50,screenX=50,screenY=50')">
            Click here to open Google
        </a>
    </p>
        <a href="http://www.tfproject.org" target="awindow">
            Click here next to change to TFP
        </a>
</body>
</html> 

The JS function opens up a new window with the first parameter being the url, the second being the name you can use to target the window in the future. The last parameter if for the traits you want the window to have. Most of them are pretty self explanatory, just make sure screenX and screenY are the same as left and top respectively. Oh yeah, no spaces in the options string. If you want more than that I would more than happy to expand. Sorry about the crappy formatting, php formatting sems the only one that will work right

tinfoil 06-16-2003 04:40 PM

Bah.. I really hate it when webmasters force me to browse their way with non-resizable windows. At least make resizable=yes, or try it out on as many browsers as you have access to since not all browsers render the same.

darkure 06-16-2003 07:53 PM

When you add the target attribute to your anchor tag you can give it a certain name. target="_blank" will always open a new blank window but you don't have to do this. If you want you can have all your links open in a window different than your page is on but they will all open in the same one.

Let me explain it better. Say you added target="link" to all your links. On your page you included a link to CNN, Toms Hardware, and the TFP. Now say I was on your site and I clicked on the CNN link. It would get a new window with CNN. Then I clicked on the lead story on CNN and I still have two windows. One with your page and another with the lead CNN story. Now say I switched back to your page and I clicked on the TFP link. TFP would open up not in an entirely new window but the one where the CNN story is. The is because the target attribute give the new window a name, in this example "link". So each link that points to the windows named "link" will open in that window even if the site currently display is not what was originally opened in that window.

MacGnG 06-16-2003 08:52 PM

i'm sorry but i feel javascript for opening a window is only used for ads and annoying popups

target="_blank" is really al you need.

javascript is ok but u dont really need all that stuff... unless you are making a popup ad

crazycousinjim 06-17-2003 10:12 AM

I have to disagree. Although you can do it much easier with the target. You can get much more control over the window layout and such. If you are opening up a page for announcements or or help page then why waste all that valuable pixel space with chrome. I just depends what you want I guess.

cowudders14 06-18-2003 07:33 AM

Quote:

Originally posted by MacGnG
i'm sorry but i feel javascript for opening a window is only used for ads and annoying popups
I beg to differ:

Give the users of your site the option of opening in a new window or not. Ok, you have to use javascript, but it works great!
Have a look at http://www.dynamicdrive.com/dynamicindex8/newwindow.htm and
http://www.dynamicdrive.com/dynamicindex8/newwindow2.htm

edited cause I can't type!


All times are GMT -8. The time now is 12:14 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73