in reply to html output to div tag without submitting the form

CGI::AJAX will do what you want.
Or, if you want to hand-bash everything, see this rather excellent node: Re: Simple CGI::Ajax
  • Comment on Re: html output to div tag without submitting the form

Replies are listed 'Best First'.
Re^2: html output to div tag without submitting the form
by ikegami (Patriarch) on Mar 17, 2010 at 00:18 UTC

    You have linked to an non-existent module. I believe you meant CGI::Ajax.

    • I doubt it generates code to place the request.
    • I doubt it prevents submission of further requests while a request is being served.
    • I doubt it provides feedback to the user that a request is in progress.

    I'm sure it's a great help, but the work is far from done. AJAX is hard to do well.

Re^2: html output to div tag without submitting the form
by ksublondie (Friar) on Apr 22, 2010 at 19:41 UTC
    Beautiful! Used the example from Re: Simple CGI::Ajax as a springboard to get it to work with my code. That was exactly what I was wanting. Thanks!