How to make the focus remains on the same tab while a link is opening in new tab in the background though jquery ?
Asked
Active
Viewed 1,407 times
1 Answers
0
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>

Swetha
- 746
- 10
- 19
-
I have tried that, but it is opening in a new window.. – Rose Aug 13 '14 at 05:27
-
Rose : What u exactly want to achieve? – Swetha Aug 13 '14 at 05:33
-
@Swetha:I want a tab to be opened in background on click of a link not a new window.. – Rose Aug 13 '14 at 08:56