I want to retrieve contents of B.html file into div of A.pl file. How do I do this in same domain and cross domain in secure way.
# totally techinally incorrect code but # this what I want to acheive my $pjx = new CGI::Ajax( 'exported_func' => \&perl_func); print $pjx->build_html( $cgi, \&Show_HTML); sub perl_func { my $input = shift; my $varHtml = "second_file.html"; return $varHtml.responseText; }

At present second_html file is in my domain. But I have used xmlHttp request to retrieve contents from other websites also. But I don't how things works in CGI::Ajax


In reply to CGI::Ajax. Getting content of second.html file to resultant div of one.pl (same/cross domain) by msinfo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.