0

what is the right use of window.open in IE8?

window.open('prova.php','prova','width=350,height=250');

is good in firefox but not in IE8

Sarfraz
  • 377,238
  • 77
  • 533
  • 578
Omega
  • 8,640
  • 9
  • 30
  • 29

2 Answers2

0

window.open works across browsers. And your code works fine for me in IE8 too. It could be some other reason like your pop-up is being blocked, check the settings just in case.

Check out:

Sarfraz
  • 377,238
  • 77
  • 533
  • 578
0

IE8 has a native popup blocker. You have to manually enable popups. You can try NOT using window.open and instead inject html in the form of a modal in the page.

meder omuraliev
  • 183,342
  • 71
  • 393
  • 434