About 819,000 results
Open links in new tab
  1. javascript - Open URL in same window and in same tab - Stack …

    Dec 10, 2011 · I want to open a link in the same window and in the same tab that contains the page with the link. When I try to open a link by using window.open, then it opens in new …

  2. Open URL in new window with JavaScript - Stack Overflow

    Jan 3, 2013 · I'm making a "share button" to share the current page. I would like to take the current page URL and open it in a new window. I have the current URL part working, but can't …

  3. javascript - Open a URL in a new tab (and not a new window)

    Apr 11, 2015 · Javascript knows nothing about your browser and tabs vs windows, so it is really up to the browser to decide how to open a new window.

  4. javascript - Open link in new window or focus to it if already open ...

    Jun 11, 2012 · I have a link which should open in a new tab, but if the tab is already open, just switch to it. I've tried with javascript, wnd = window.open () and than wnd.focus (), that works …

  5. javascript - Need to call External URL in SAP Analytics Cloud using ...

    Mar 25, 2024 · javascript sap-analytics-cloud edited Mar 25, 2024 at 13:47 Sandra Rossi 14k 6 28 58

  6. How can I open a link in the default web browser from an HTA?

    Feb 2, 2017 · 13 I'm working on an application that is implemented as an HTA. I have a series of links that I would like to have open in the system's default web browser. Using <a href="url" …

  7. How to open a native iOS app from a web app - Stack Overflow

    Apr 20, 2012 · I can also open it from other applications using the +openURL: method of UIApplication. I would like to also open it with certain arguments from a native web app that …

  8. Javascript to open a URL + the text input by user

    Mar 17, 2014 · Learn how to use JavaScript to open a URL with user-provided text input.

  9. Javascript - How to check if window.open (url) is successful?

    Oct 5, 2021 · As stated on MDN's Window.open() page: Return value A WindowProxy object, which is basically a thin wrapper for the Window object representing the newly created …

  10. javascript - Using relative urls with window.open - Stack Overflow

    Sep 6, 2013 · I am using below JS code to open new window by populating dynamic generated code.. function OpenWindow(obj) { var w = window.open(); var stored = …