tags:

views:

37

answers:

1

hi

     window.open(address,'Audio Player','width=340,height=30,directories=no,location=no,menubar=no,resizable=no,scrollbars=no, status=no,toolbar=no'); 

this is my code which is not working in IE. bu i want in IE.can any one suggest me to how

+3  A: 

You can't have a space in the Window title in IE. Change it to 'AudioPlayer'

Geoff
To be clear, it is the window name, and the equivalent of `target=` on an anchor element, not the window title which is derived from the `title` attribute on the loaded page.
Doug Neiner