Help for this page

Select Code to Download


  1. or download this
    <!--jquery should be included before any other js-->
    <script type="text/javascript" language="javascript" src="/simple_ajax
    +_cgi_example/jquery-1.2.6.js"></script>
    <script type="text/javascript" language="javascript" src="/simple_ajax
    +_cgi_example/simple_ajax_cgi_example.js"></script>
    ...
    
    </body>
    </html>
    
  2. or download this
    $(document).ready(function () {
        $("#file").change(function() {
            $("#form1").submit();
    ...
    function callback(msg) {
        $("#msg").html(msg);
    }
    
  3. or download this
    #!/usr/bin/perl
    
    use warnings;
    ...
    print "<script>parent.callback('upload file success')</script>";
    
    exit;