Skip to content Skip to sidebar Skip to footer

Link Open In New Tab And Focus On Previous Tab

How to make the focus remains on the same tab while a link is opening in new tab in the background though jquery ?

Solution 1:

Try this code -

   <p>Click the button to open a new window, and assure that the new window GETS focus (send the new window to the front).</p>
   <button onclick="myFunction()">Try it</button>
   <script>
      function myFunction() {
        var myWindow = window.open("", "", "width=200,height=100");
        myWindow.document.write("<p>A new window!</p>");
        myWindow.focus();
      }
   </script>

Post a Comment for "Link Open In New Tab And Focus On Previous Tab"