in reply to Re^2: CGI::Ajax gives 'null' scriptname
in thread CGI::Ajax gives 'null' scriptname

I Checked out Brian Thomas. As you can see, he came up with a patch. Maybe notice the problem with passing sub by ref.. I had to make some detour, and I am still not quite sure what I am pasing .. Arnold van Kampen
my $ref_show = \&Show_HTML; my $show = $ref_show->($env); print $pjx->build_html( $cgi, $show);

In stead of

<code> print $pjx->build_html( $cgi, \$Show_HTML($env) );