It looks like your just misplacing your quotes. Take out the width and height quotes and it works fine, like so...
var adWin = window.open(url, 'andreas', 'width=500, height=300, toolbar=no, menubar=no, status=no, scrollbars=no, resizable=yes');
: I want to open new window with no tool- or scrollbar or anything. I use the following script, but nothing happens when I click on the link:
:
: <script language="JavaScript">
:
: function openAd(url){
: var adWin = window.open(url, 'andreas', 'width='500', height='300', toolbar=no, menubar=no, status=no, scrollbars=no, resizable=yes')
:
: adWin.moveTo(50,50)
: }
: </script>
:
: <a href="javascript:openAd('macro.html')">Show window</a>
:
: Any idea, what could be wrong?
:
: