New tab or browser

How do you make a link open in a new tab or browser? I don't want people sent from my page and have to find there way back.

Sully,
You won't be able to do this within iWeb itself. You'll have to go into the HTML code afterwards again and change a few things. Of course, what this means is that you will have to make these changes everytime your page is republished. It may be time to get familiarized with MassReplaceIt if you aren't already so that you can easily repeat the editing over and over as necessary.
The main thing you will need to to is to add the expression target="_blank" to your hyperlinks so that they look more like this...
Click ME
Here is a tutorial page from Michael Wong on the matter...
Open Links in New Windows
Notice that this link opens in a new window?!
Good luck!

Similar Messages

  • When trying to open a link in the page I am on and open it in a new Tab the browser stops responding.

    I open the browser and the Hime Page opens as expected. When I open a link to an item or article on the page in a new Tab Firefox stops responding and thye top line on the screen shows that to be the case. The only way to resolve the issue is to exit or close Firefox and start again. This has just started yesterday (Oct 12) as before that the process worked fine.
    When I open a new Tab and then type in a new web site it will open and allow access with no problem, provided I have not open a link as outlined in the first paragraph. I can open several tabs in this manner and Firefox works as expected. But if I try to link from any page and open in a new Tab i get the "not responding" situation again.
    After closing Firefox so I can restart it, the browser will open but the first screen will be a blank tab rather than my home page. I can open web sites and Firefox proceeds as expected as long as I do not try to open a link from within the page in a new Tab. I get the same "Not responding" situation.
    If I immediately close Firefox after it opens without my homepage and then restart it then my home page will open as expected.
    I have not made any changes to programs or setups in Firefox or on my computer in the immediate time before the problem started.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Open in new tab in browser

    Anyone know if it is possible to open in a new tab in a
    suitable browser rather than open in a new window?
    Doug

    This is typically a browser setting (at least in firefox) as
    to how
    new windows are handled.

  • Quick question: how to stop catalog opening in new tab in browser?

    hi,
    when i click a catalog from a list on the main page it opens the linked template for my catalog products but does so in a new browser tab?
    how do i get the catalog products page to open in the current tab?
    thanks in advance.
    sm

    Just updating this thread with the solution in this case.
    Solution: Go into your template and remove the reference "_blank" which is causing this to open in a new tab.
    - http://screencast.com/t/sqy18afr
    Kind regards,
    -Sidney

  • Click on URL in email, open new tab in browser, BUT stay in same Thunderbird email

    There used to be a way to click on a link (URL) in an email that would open a new tab/window in the browser (Firefox), BUT stay in Thunderbird - similar to what Ctrl-Left-click does in Google search results in Firefox.
    My work flow is usually to open several links, staying in Thunderbird and then when I'm done - go to Firefox to look at them all. E.g. I get a stackexchange weekly summary email, click on all the topics that look interesting and then, when I'm done selecting them, go look at them in Firefox.
    I don't want to be forced to jump back and forth for every link, one at a time. This used to work.
    Is there a preference or add-on that will do this - or anything else?

    I'm not aware of any complete reference to all preferences that offer a full explanation of what each does, what the Value means and how to use in a problem-oriented fashion.
    But the list below does help:
    http://kb.mozillazine.org/Category:Preferences
    http://kb.mozillazine.org/About:config
    http://kb.mozillazine.org/About:config_entries
    http://www-archive.mozilla.org/unix/customizing.html#ui
    http://preferential.mozdev.org/preferences.html
    there is also a postscript module used by eg: linux
    http://kb.mozillazine.org/PostScript_Module
    Margins are set up here:
    File > Page Setup > Margins & header/Footer
    or via File > Print Preview > Page Setup button
    Helpful hints:
    if you have Margins (millimeters)
    and set eg: Bottom margin as 20.0
    then look in config editor, you will see:
    print.printer_XX.print_margin_bottom; Value = 0.787500023841858
    This seemed odd at first. All Values in config were being converted to inches represented in a decimal format.
    If you ever need to change the margins from millimeter to inches:
    Print.printer_xx.print_paper_size_unit Value: = 1
    Change the Value to 0 (zero) to get inches
    If you change the Value to 0 for inches and then reopen:
    File > Page Setup > Margins & header/Footer
    you will see the Bottom margin has auto changed from 20.0 (mm) to 0.8 (inches rounded up), so although the display is different in File > Page Setup > Margins & header/Footer tab, the actual information in config preferences remains unchanged as it is saved in decimal inches format used by US as default.
    if using millimeters then the paper size would be A4 210 x 297 mm.
    Although looking in the config preferences it will say paper width 8.50 and paper height 11.00.
    Usually, you can change the paper size when you select to Print and look in Print Properties. I'm in UK and using millimeters so get A4; the US uses Letter 8½ x 11 inches.
    So I can see how it could be confusing to anyone using millimeters and then sees, what appears like wrong data in preferences.

  • BUG: navigateToUrl always opens new tab in browser, also when window parameter is specified

    I have a problem navigating to a Url in the default browser in an Adobe Air project.
    air.navigateToUrl(request, windowName) launches the browser and displays the page, but it displays a new tab for every request.
    Here is a very simple example that shows the problem:
    Flex:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Script>
    <![CDATA[
    import flash.display.Sprite;
    import flash.net.navigateToURL;
    import flash.net.URLRequest;
    protected function button1_clickHandler(event:MouseEvent):void
    NavigateToURLExample();
    public function NavigateToURLExample():void {
    var url:String = "http://www.adobe.com";
    var request:URLRequest = new URLRequest(url);
    try {           
    navigateToURL(request, "testWindow");
    catch (e:Error) {
    // handle error here
    ]]>
    </fx:Script>
    <fx:Declarations>
    </fx:Declarations>
    <s:Button x="169" y="165" label="Button" click="button1_clickHandler(event)"/>
    </s:WindowedApplication>
    HTML:Javascript:
    <html>
        <head>
            <title>navigateToURLTest</title>
            <script type="text/javascript" src="lib/air/AIRAliases.js"></script>      
        </head>
        <body>    
            <a href="#" target="testp"  onclick="javascript:air.navigateToURL(new air.URLRequest('http://www.adobe.com'), 'TestWindow');return false;">Same Tab</a>
        </body>
    </html>
    How can I open the url in the same window/tab?
    Message was edited by: Karel VDH

    Hi..
    I am struck with the same issue as well.
    It works for few sites like "http://www.adobe.com" and "http://www.google.com", but most of the sites open up in a new window, even if I specify custom name, like:
    navigateToURL(new URLRequest("http://www.britishairways.co.uk"), "MyWindow");
    Also tried through ExternalInterface viz:
    ExternalInterface.call("window.open", new URLRequest("http://www.britishairways.co.uk"), "MySameWindow", "");
    Please reply whether it is a bug, or there if there are any alternative approaches.

  • Open a new tab, mystery browser opens

    I have Google set as my home page. When I open Firefox, it goes to Google. However, when I open a new tab, I'm getting lab.search.conduit.com. Has pix of Honey Boo boo's mom and crap like that. Anyone know what I can do to get rid of this? Is it as simple as running my virus and malware programs?

    You can open the <b>about:config</b> page via the location bar and search for prefs that refer to <b>conduit</b> and reset related user set (bold) prefs via the right-click context menu to the default value.
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved
    You can check in "Windows Control Panel > Programs" for recently installed programs to see if anything from Conduit or any other suspicious software like Search Protect shows up.
    *Control Panel > Programs > Programs and Features > Uninstall or change a program
    *Click the Installed column to sort by this heading

  • T431s Middle click not working (open new tabs in browser)

    Hi, I have a brand new t431s here, and I can not get the track point working as expected (and as on all previouse thinkpads since the i-series):
    expected behaviour:
    middle-click on link -> new tab
    middle click&hold and trackpoint-> scrolling
    I am not able to find the setting which enable this behaviour.
    Any help would be appreciated.
    cheers
    schmaud

    What OS?

  • CP 4 not opening new tab in browser

    Without actually seeing it myself, here is a problem my client has described.  5 or 6 modules are on a website (SiteBuilder) with links. When a user clicks on a module link, the module opens and runs fine. But when the user closers the module, they are forced to log back on to the website. I assume the problem is that when the user clicks the module link, that instead of another tab opening in the browser, it opens inside the same page.
    Does anyone know if there is a script/code that I can add to the modules to always open either another tab or browser window?
    Thanks in advance!
    JT

    Hi there
    My guess is that any configuration of that sort would occur at the SiteBuilder end. Perhaps there is a forum dedicated to SiteBuilder where you might ask?
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Open a document in a new tab or browser window Sharepoint 2013

    Customer requirement states that a doc must be opened in the browser, but requires that it open in a new window or tab.  I know that this is bad practice, but customer is the customer.  Please provide the best course of action.  95% of docs
    will be PDFs and can not use client application as the means of opening.  Appreciate your help and easiest, simplest solution.

    Hi,
         Similar question has been asked in the forum, hope it will help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9db08c4a-b53c-419a-84f8-001c194d1311/how-to-open-sharepoint-document-library-pdf-file-in-new-window?forum=sharepointadminlegacy
    Take a look to the articles given in below link too.
    http://office.microsoft.com/en-in/sharepoint-server-help/change-how-to-open-a-document-in-a-library-with-one-click-HA101729873.aspx
    http://www.benramey.com/2011/04/25/opening-all-sharepoint-2010-documents-in-a-new-window/
    Regards,
    MS

  • How to access the URL on page load and open it in the new tab of browser

    Hi All,
    I am using Jdeveloper 11.1.1.5 and i have one page "Hello.jspx" and one data control consist of two attributes :-one is "id" and other is "url".
    The datacontrol has been created from the WebService.
    Now my requirement is : -
    whenever i run the page "Hello.jspx" , then on page load the url attribute should get accessed and should be opened in a new window or tab of the browser.As the url contains the information about the document.
    Hello.jspx page doesn't contain any bindings of the url attribute.
    I had thought of using the PhaseListener class and use the onPageLoad method .But how do i get the url from the dataControl and open it in the other tab of the browser on page load.
    Please suggest!!!!
    Thanks.

    Hi,
    I don't think this can be done this way. I would think that you need to execute JavaScript upon Hello.jspx load to open a new window and pass the URL to it
    Frank

  • Creating URLs that open a new tab or browser window?

    Hello out there...
    I am creating some podcasts via Garage Band and iWeb for my grade 9 class. I have embedded some URLs in the podcast however when one 'clicks' the links the iWeb page is closed and the user is taken to the new page.
    I would like the iWeb page with the podcast to remain open and a new page or tab open up to display the link.
    Is it possible to do this?
    Thanks,
    B!

    Hi,
         Similar question has been asked in the forum, hope it will help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9db08c4a-b53c-419a-84f8-001c194d1311/how-to-open-sharepoint-document-library-pdf-file-in-new-window?forum=sharepointadminlegacy
    Take a look to the articles given in below link too.
    http://office.microsoft.com/en-in/sharepoint-server-help/change-how-to-open-a-document-in-a-library-with-one-click-HA101729873.aspx
    http://www.benramey.com/2011/04/25/opening-all-sharepoint-2010-documents-in-a-new-window/
    Regards,
    MS

  • How does one open something in a new window rather than a new tab, when browsing?

    I much prefer how this used to be before I upgraded to the latest iOS, in this sense.
    I do not like dealing with multiple tabs; there are times that a new window is just needed.
    I am assuming that it is possible to open new windows and I just haven't figured it out yet.
    Thanks for any and all help!

    Thank you for your comments.
    Truthfully, I am shocked that this is the case and even more so that people didn't put up such a stink that Apple had to reinstate the old option. If I had to pick only one, which doesn't seem reasonable at all, I would choose the separate windows of old as opposed to the tabs.
    Thanks again for your help; I was really hoping that I wouldn't be disappointed.

  • My timeline is stop when browser open a new tab

    any one know how to fix that
    every time i switch to a new tab in  browser (laptop or device)
    my timeline is stop
    when i back to the page ... then continue ....
    why ?
    and how to fix that ?
    thanks

    Edge Animate uses requestAnimationFrame API for animations.
    When focus is out of a tab  there is no repaint and requestANimationFrame does not call a function to update animation.Thus you see the pause in animations.
    Not sure if there is any way to over come this.

  • Keep music playing in the browser while switching to a new tab.

    If I'm streaming music off a website in the browser using Pandora or some other service I cannot keep the music playing if I want to make a new tab and browse another site. The music will continue playing if I keep the browser in the background but I'd like to stream music and switch to a new tab within the browser and keep the music playing.

    OS 1.0.7 has been reported to allow streaming to continue on one tab even if you are browsing another tab.
    But it seems it does not work for YouTube streaming.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

Maybe you are looking for

  • How do I use the PXI_clk10 backplane clock? It's not there!

    Hi, folks! This might seem a trivial question, but I'm completely at a loss here. I have made an RT-project in LV8 which (among other things) samples data continuously from two cards located in a PXI-system. All 32 (16+16) differential channels are u

  • PR adoption to PO

    Is there a way in config to ensure that if a Req line have been deleted, that when adopting on a PO, it does not adopt as well? Currently if a Req is created for eg with 2 lines, and line 2 is deleted. When adopting in ME21N both lines will adopt if

  • Error logfile

    dear all,              i m a newbie i need your precious help.we have r12 apps last night  application server shutdown suddenly  but db was up and running.i want to find why applications server shutdown,where do i get  information regarding why appli

  • Not able to set Property in bean

    this is my code----------------------------------------------- <% if (request.getParameterValues("Submit")!=null) %> <jsp:useBean id="WriteToFile1" class="mypackage.WriteToFile"/> <jsp:setProperty name="WriteToFile1" property="Path" value='<%= reques

  • How can I host multiple DNS zones using OS X Server?

    Simply that. I want to host several zones and can't find a UI to do it. Is it a case of hacking at the named config files and never using the UI again? That would seem rather ridiculous. Thanks, Neil.