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
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
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:
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.