Skip to content Skip to sidebar Skip to footer

Popup Window Not Opening On Ie7

Hi Javascript gurus, I have this Javascript code which is working fine on Firefox , but it is not working on IE 7. Any ideas why? Here is the code function TestWindow() { Sim

Solution 1:

You may have realized that IE is giving the error "Invalid argument."

IE doesn't seem to like window names with spaces in them. Change 'Simple Test' to 'SimpleTest' etc.

Solution 2:

For myname parameter use only a-zA-Z0-9 characters. IE doesn't like any other, especially whitespace characters.

Solution 3:

Check popup blockers

Post a Comment for "Popup Window Not Opening On Ie7"