Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
996 views
in Technique[技术] by (71.8m points)

jquery - How to open popup windows in background using javascript?

Is it possible to open pop-up windows BEHIND the current active screen using java script?

 var win= window.open(value,'_blank');

the above script opens pop windows in browser tab but I loss active page from my sight.

any suggestion?

Thanks in advance

Solution:

As per @Brian advised,

var win=window.open(value,null,"height=400,width=600,status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no");
win.blur();

Its works in IE,FireFox and safari but not in Chrome browser.

Can any one suggest how to open multiple popup boxes in IE browser? The above script will open only one pop up in IE.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can add:

win.blur();

... to your code ...

Or

this.window.focus();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...