<A HREF="javascript:window.open('http://www.docjs.com/', '', 'width=640,height=480')">Doc JavaScript</A> Click the Doc JavaScript link above and see how the page is reloaded with just a single word: [object]. The reason is that javascript:window.open() returns an object and the link tries to interpret the object as a URL, unsuccessfully of course.
You can solve this problem by masking a void return value. Here is the link again:
Doc JavaScript
And here is the corresponding code:
<A HREF="javascript:void(window.open('http://www.docjs.com/', '', 'width=640,height=480'))">Doc JavaScript</A>
Requires Free Membership to View
Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.
This was first published in June 2001