in reply to Re^6: CGI::Ajax No head/html tags, nowhere to insert. Returning javascript anyway.
in thread CGI::Ajax No head/html tags, nowhere to insert. Returning javascript anyway.

Use map
$html .= $cgi->div({-id=>'container'}, $cgi->img({src=>'images/pic.png', height=>'100px', width=>'150px'}), map{$cgi->p($_)}($num..5), $cgi->div({-id=>'menu_bar'},
poj
  • Comment on Re^7: CGI::Ajax No head/html tags, nowhere to insert. Returning javascript anyway.
  • Download Code

Replies are listed 'Best First'.
Re^8: CGI::Ajax No head/html tags, nowhere to insert. Returning javascript anyway.
by msinfo (Sexton) on Sep 03, 2013 at 18:35 UTC

    Hi monks,

    Anonymous monk, and poj, that was helpful, and below is code, which worked

    $html .= $cgi->div({-id=>'container'}, $cgi->img({src=>'images/pic.png', height=>'100px', + width=>'150px'}), ( do { for(1..3){ $foo .= $_ } $foo ## last statement is like "return $foo;" } # end of do ), $cgi->div(

    I took some time to meditate (or staring ;-)), on Perl Documentation (perldoc perl), and things started to make sense.

    Thanks again! and I am back to meditation ;-)