Difference between revisions of "Talk:HtmlLinks"

From WeBWorK_wiki
Jump to navigation Jump to search
(New page: == More flexible JS popup == DOCUMENT(); loadMacros('PGstandard.pl'); $url = alias('test.html'); $target = ''; $options = 'height=625,width=600,location=no,menubar=no,status=no,'...)
(No difference)

Revision as of 11:26, 4 May 2008

More flexible JS popup

DOCUMENT();

loadMacros('PGstandard.pl');

$url = alias('test.html');
$target = ;
$options = 'height=625,width=600,location=no,menubar=no,status=no,'
        .'resizable=yes,scrollbars=yes,toolbar=no';
$link = "javascript:window.open('$url','$target','$options').focus()";
$name = 'Calculator';

BEGIN_TEXT
\{ htmlLink($link, $name) \}
END_TEXT

ENDDOCUMENT();

This should go in a macro -- htmlLink_popup maybe?