How to open a link in a different browser tab.

Hi all.
I have this simple requirement:
- Create a link on a page with several options (some page within application, others, URL link).
- Want to automatically open a new tab on browser when users clicks on any link (without having to right click on it).
Is that possible?. If there a property, default behaviour to set?.
Thanks in advance ....!

Okay, it is a list region though
You just need to edit the list template and change the list template current and list template non current to add the attribute i mentioned above
Existing
<a href="#LINK#">
Change to
<a href="#LINK#" target="_blank">

Similar Messages

  • How to open particular link or content in new tab

    how to open particular link or content in new tab.... as in ipad we just continue pressing and a option comes that open in new tab... exactly when i tried in macbook .....i was not able to do.... didn't find the answer after googling also. please suggest?

    Check your browser preferences.
    ex Safari>Preferences>General>

  • How to open a link automatically in a new tab rather than right click and select open in a new tab?

    no details

    To open a link or Bookmark in a new tab, you can:
    *press the mouse scroll wheel on a link or Bookmark
    *hold down the CTRL key while left-clicking the link or Bookmark
    See:
    *http://www.7is7.com/software/firefox/shortcuts.html
    *https://support.mozilla.org/en-US/kb/Mouse%20shortcuts
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?

    Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?
    Thanks!

    Dear Linc,
    Thank you for the advice, John Blanchard1  and Linc Davis
    As suggested in your reference thread I removed "/Library/Printers/hp/PDEs/hpPostScriptPDE.plugin" and the problem has been resolved.
    I am guessing the the plug-in for the hp printers got corrupted and effected every thing, or became unsuitable when I installed an Apple update. I would be most grateful if you can confirm how the problem was coursed so I can understand and learn from this experiance.
    Ash

  • Using the middle mouse button to open a link in a new background tab also reloads the current page.

    When I click on a link with the middle button to open the link in a new background tab, the original page reloads and my view jumps to the top each time.
    The new tab loads fine but in order to continue reading the original page I have to scroll down to where the link I clicked on is.
    If I right-click on the link and select "Open Link in New Tab" from the context menu then the behaviour is as expected -- does not reload the original page. The flaw only happens when using the convenient mouse shortcut.
    This is annoying, for example, on long Wikipedia articles where I want to open some of the cited pages in other tabs for reading later whilst I continue to read original article. I'm constantly having to find where I was in order to continue reading.
    I've observed this behaviour on both Windows XP and Ubuntu on various computers.
    [EDIT]: Better description of problem in title.

    I've never had that happen with Firefox 4 on WinXP. I haven't updated my Netbook that runs Ubuntu to Firefox 4 yet.
    1. Try disabling the Java Console 6.0.24 and the Java Quick Starter 1.0 extensions and see if that solves your middle-click problem.
    2. Try the Firefox SafeMode. <br />
    ''A troubleshooting mode, which disables most Add-ons.''
    ''(If you're not using it, switch to the Default Theme.)''
    # You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    # Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • How to open a URL in the default browser via CC HTML Extension?

    Hi,
    I'm trying to open a link via the default browser in a HTML Extension for Photoshop CC built with Extension Builder 3.
    With the initial example the "/indext.html" it look like this:
    <li><button class="default" id="btn_PHXS" onClick="onClickButton('PHXS')" disabled="true">Run ps code</button></li>
    and I changed the code from "/ext.js" to:
    ...function onClickButton(ppid) {    var csInterface = new CSInterface();    csInterface.openURLInDefaultBrowser('http://www.adobe.com');}...
    This is what the "/lib/CSInterface-4.0.0.js" looks like:
    * Opens a page in the default system browser.
    * @param url   The URL of the page to open. Must use HTTP or HTTPS protocol.
    * @return One of these error codes:\n
    *      <ul>\n
    *          <li>NO_ERROR - 0</li>\n
    *          <li>ERR_UNKNOWN - 1</li>\n
    *          <li>ERR_INVALID_PARAMS - 2</li>\n
    *          <li>ERR_INVALID_URL - 201</li>\n
    *      </ul>\n
    CSInterface.prototype.openURLInDefaultBrowser = function(url)
        return cep.util.openURLInDefaultBrowser(url);
    Since "util" doesn't seem to be defined  I get the message:
    Uncaught TypeError: Cannot call method 'openURLInDefaultBrowser' of undefined
    Is the something missing?
    Thx,
    frankin

    Hi Franklin,
    Apologies for the delay but I have been trying to determine why this API is not been working. I have since discovered that, although this API is documented in the JS library, the behaviour has yet to be implemented into Photoshop CC. Offline I will try to determine why this API was included in the library when it was not ready but for the meantime, if you would like to open a browser, here is a workaround:
    Instead of using:
    //(new CSInterface).openURLInDefaultBrowser("http://www.adobe.com")
    // Use the createProcess API to open a browser. The following shows a workflow in Windows to open Internet Explorer.  
    var csInterface = new CSInterface();
    var rootDir = "/";
    var isWindows = window.navigator.platform.toLowerCase().indexOf("win") > -1;
    if (isWindows) {
                        rootDir = csInterface.getSystemPath(SystemPath.COMMON_FILES).substring(0, 3);
    var processPath = "/usr/bin/open";
      if (isWindows) {
        processPath = rootDir + "Windows/explorer.exe";
    var url = "http://www.adobe.com";
    window.cep.process.createProcess(processPath, url);
    Apologies for this inconvenience but we promise to keep you informed when openURLInDefaultBrowser API is fully supported.
    Kind regards,
    Lea

  • MAC - Can't open a link/URL in a new tab inside a folder

    I can't open a link/URL in a new tab inside a folder from a Mac. I am sure I can do that in PC. Please advice. Thanks in advance.

    Does the URL go to a regular web page, or another kind of file (e.g., PDF, PowerPoint)?
    If you right-click the link and choose Copy Link Location, then paste to the address bar and press Enter, does Firefox load the link as expected?

  • How to open vcf file in html in browser or pdf in adobe

    Can Any on tell me
    In flash as3 website
    How to open vcf file in html in browser or pdf in adobe?
    I want all visitors to be able to view vcard info. What if visitor does not have software to view vcf file?

    Hi,
          if u want to show a pdf then u can use fscommand("exec",batchfilename)
    and something.batch  will open the pdf

  • How to Open External Links in a New Tab

    I want links in web pages to open in the current tab so I have browser.link.open_newwindow=1. But how do I make links from extenal applications open in a new tab?

    Try setting the following to 3, not really sure if preference was actually removed or just won't accept 2, the intent was that the two variables be the same (I think)
    browser.link.open_external -- Where to open links sent to the browser from an external application
    * 2 (default in SeaMonkey): Opens external links in a new window
    * 3 (default in Firefox): Opens external links in a new tab in the most recent window
    * 1 (or anything else): Opens external links in current window
    Note: In Firefox 2 and above, via “Tools → Options → Tabs → New pages should be opened in:” (same as browser.link. open_newwindow)
    Pref removed from Firefox 3.5

  • How to open a link in a Window NOT a Tab in OS X Mountain Lion

    For those of you who Hate having links open in tabs, especially when you have a window open and minimized to your doc.  The link will take that
    minimized window and use it to stick a tab in it and then open the link........WHAT A PAIN!
    Here's how to avoid that problem and have the links open in a Brand New Window.
    Safari/Preferences/Tabs
    Uncheck both boxes
    Now, the instructions below change to window instructions (not tab instructions)
    See the little window to the right of:  Opens pages in tabs instead of windows:  Click the little arrows and select NEVER! 
    Now you have to insert a checkmark in the 1st box:  (Butterfly) - click opens link in a new tab
    The below instructions will revert back to tab instructions, Do Not Worry.  All Is Good.
    The fact that you have selected NEVER, means that NOW, the links will open in Brand New Windows!  Yeah!!!
    Close the Preference Window and click away. 

    vveena123 wrote:
    Hi everyone,
    I immediately need help,plz help me.this is not the way to get help around here
    try stating the problem professionally, without the assumption that your problem is important to others
    I have a jsp which has a link that should open in a new window.
    when the user clicks again the same link it should not open in another new window instead it should open the previous window.this has nothing to do with java or jsp
    this is an html target question
    testing
    say if a user clicks the link 5 times it shud not open 5 windows instead only 1
    Thanks in advanceuse target="new" i think

  • How to open external links in new tabs?

    I own a personal web site. A question is
    How to open external site in the new tab? For example: the THIS LINK will open new window. How to open new tab in Safari for this case?
    Thanks for answer.

    Morning Igor and welcome to the forum.
    I assume that you are talking about enabling the tabs in the preferences of safari:
    Preferences, tabs, open new windows in tabs (I believe this is how it is written.. not in front of my mac).
    Hope this helps...
    Steff

  • How to open form links in new window in Acrobat XI

    Does anyone know how to have a link within a form open a new instance of a browser?

    Answered through email:
    Hello,
    I don´t understand your problem. You have not tried the component mentioned in my replies, right? You have tried Launch URL component from WD Native. Because if you have, you would ask such a question. This component is a u201Cgroupu201D of a text field and a button. That means, that fits your problem completely IMHO. Place the component on your form layout, Set the presence of the text fox inside this Launch URL and you will see what address is being launch when clicked on the button.
    You said you have your address in the text field. So this is the same. Just change the source where the button takes the URL from or copy the value from your form into this one.
    Hope this helps.
    p.s.: looks like you have absolutely no exerience with JS coding.
    That means you need to read first and code later, right? Start here: http://www.adobe.com/devnet/livecycle/articles/lc_designer_scripting_basics/lc_designer_scripting_basics.pdf

  • How to open the link in new firefox window for web desktop based application? Or how to open the mail/website/rss link in new firefox window

    I am using the firefox 3.6. My problem is that I am using the web desktop and few web desktop based application directly opens link. If I click on rss link than it opens in same window, so no longer access to web desktop. I want to open any kind of link in new window instead of same window. I have tired to change the value of browser.link.open_newwindow, browser.link.open_newwindow.restriction but doesn't work. Also gone through the https://developer.mozilla.org/en/window.open but not sure where to do this in web desktop based application or firefox where we connect the web desktop?
    Is there any way to open the link every time in new firefox window?

    Hi Joseph,
    the HTMLB link object misses the support for onClientClick through the tag lib, see hbj:link without onClientClick ? and OnClientClick Event for Link HTMLB Component for similiar problems and workarounds.
    With this workaround, you can call for example an AbstractPortalComponent, implement doOnNodeReady (with an empty doContent method) and return the PDF, settings the content type on the http before etc.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • How to open a link by clicking on a DataGrid row

    I have a list of documents that are accessible over the internet.  The list is in an XML file which serves as the data source for a DataGrid.  What I cannot figure out is how to open the document selected in the DataGrid.  I think that I need to change something in the openDocument function (below) but I am not certain what I should change.  Any help would be appeciated.
    Sample file are below:
    Application
    viewDocuments.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="initApp();">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    import mx.core.Application;
    [Bindable]
    private var documents:ArrayCollection;
    private function initApp():void
    this.srv.send();
    private function onResult(evt:ResultEvent):void
    this.documents=evt.result.data.document;
    private function openDocument():void
    var docURL:String;
    docURL=dgDocuments.selectedItem.url;
    navigateToURL(new URLRequest("http://cnn.com/"), "_blank");
    //Below does not work
    //navigateToURL(new URLRequest("docURL"), "_blank");
    ]]>
    </mx:Script>
    <mx:HTTPService id="srv"
    url="documents.xml"
    resultFormat="object"
    result="onResult(event)"/>
    <mx:Canvas id="cViewDocumentsContainer"
    x="0"
    y="0"
    width="100%"
    height="100%">
    <mx:DataGrid id="dgDocuments"
    width="600"
    height="186"
    dataProvider="{documents}"
    x="15"
    y="74"
    doubleClickEnabled="true"
    doubleClick="openDocument();">
    <mx:columns>
    <mx:DataGridColumn headerText="DocID"
    dataField="doc_id"
    visible="true"/>
    <mx:DataGridColumn headerText="Name"
    dataField="name"
    visible="true"
    width="200"/>
    <mx:DataGridColumn headerText="Type"
    dataField="type"
    visible="true"
    width="90"/>
    <mx:DataGridColumn headerText="File Name"
    dataField="filename"
    visible="true"/>
    <mx:DataGridColumn headerText="Path"
    dataField="url"
    visible="true" width="200"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:Text x="10"
    y="10"
    text="View Documents"
    fontSize="12"
    fontWeight="bold"/>
    <mx:Text x="15"
    y="48"
    text="Double-click on the document below you want to read. The document will open in a new window."/>
    </mx:Canvas>
    </mx:Application>
    Data
    documents.xml
    <?xml version="1.0" encoding="utf-8"?>
    <data>
    <document>
    <doc_id>1</doc_id>
    <name>CNN</name>
    <type>URL</type>
    <filename>CNN.com</filename>
    <url>http://cnn.com/</url>
    </document>
    <document>
    <doc_id>2</doc_id>
    <name>Yahoo</name>
    <type>URL</type>
    <filename>Yahoo.com</filename>
    <url>http://yahoo.com/</url>
    </document>
    </data>
    Thanks!
    Lee

    You need this (removed double quotes):
    navigateToURL(
    new URLRequest(docURL), "_blank");
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance
    www.ChikaraDev.com
    Flex Development and Support Services

  • How to open a link inside shell.

    There are workset items in ux3.shell in ui5. I have given a http link in setContent method of one of the worksetitem. This link is opening but in new window and not inside the shell. But i want to open that link inside the shell.

    JS Bin - Collaborative JavaScript Debugging
    mContent[id] = new sap.ui.core.HTML({content : " <iframe id='myExternalLink' style='width:100%;height:100%;z-index:-1' width='100%' height='100%' src='http://go.sap.com/index.html'></iframe>" });

Maybe you are looking for