how can i open a new window in the back of the existing one? for instance i am on home and when the user clicks on a certain link.. that link will open a window in the back of the home page? does anyone knows how to do this??
can you make it a little clear, what you mean by the BACK of the home page. do you want to have the link open in the same window or a new window?
to open a link in a new window add target="_blank" to the hyperlink This will open the link in a new window, but it will be in the front
You can use JavaScript to refocus the front page once the second one is opened. Just create a function then call it on the onclick event.
var popunder = window.open("http://www.urltoopen.com/","newpopup",""); popunder.blur(); window.focus(); HTML: