I am trying to make a JavaScript popup which function on IE8 32 bits, the following examples run without any problem on several browsers including IE8 64 bits on the same computer
pop up examples
On IE8 32 bits everything results in a blank screen with a spinning mouse icon, what should I do to make my JavaScript run on IE8.
window.open("http://google.com",'popup_window','width=810,height=480,scrollbars=yes开发者_运维技巧,toolbar=no,location=no,status=no,menubar=no,resizable=yes')
The exact problem is described in this thread ie8 wont load popup links
Finaly fix the problem when you re-register IEPROXY.DLL everything start working as designed
- clicking START --> RUN
- typing regsvr32 IEPROXY.DLL
- And then clicking OK.
精彩评论