| Links like document.location = "url" and window.open("url", ...); don't seem to
work like stated in FAQ.
What would be your suggested workaround? I have created one which declares
links in a hidden area - see below. Maybe there is a better way to do it.
Thanks.
function loadPrint(printurl) {
window.open(printurl, 'printWindow', '');
}
[div id="links" style="display: none"]
[A HREF="url" name="print_" id="print_" /]
[/div]
[A
onClick="javascript:loadPrint(document.getElementById('print_').href);return;"
/a] | |