It works for me. Might be your popup blocker? Anyway, if that’s the case then it might be problematic with other users as well so the best way would be to not open a new window.
Also, your link shouldn’t depend on JavaScript completely. Nowadays we’re working according to a method called “
progressive enhancement”. This means we ensure that the site is working without any scripts and those scripts are only enhancements to the site for those devices that support it.
In your case you should put the URL in the
href attribute in case people have JS deactivated:
Code:
<a href="http://www.bigbadroo.com.au/popbeat/Website/acts/tribute_acts/tom_jones_experience/australian_tom_jones_experience_print.html" onclick="newwin=window.open('http://www.bigbadroo.com.au/popbeat/Website/acts/tribute_acts/tom_jones_experience/australian_tom_jones_experience_print.html');if(newwin)newwin.print(); return false;"><p>Print Artist Fact Sheet</p>(A4 size)</a>
And what’s that
value="Print" supposed to be? That’s not valid HTML as far as I know.