Help for this page

Select Code to Download


  1. or download this
    var leg = {
    aa: "Hello from javascript"
    ...
    function to_json() {
       return JSON.stringify(leg);
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    #my ($val, $type) = $js->eval_in_page('JSON.stringify(window.leg);');
    my ($val, $type) = $js->eval_in_page('to_json()');
    print "val: $val, type: $type\n";
    
  3. or download this
    use strict;
    use warnings;
    ...
    #my ($val, $type) = $js->eval_in_page('JSON.stringify(window.leg);');
    my ($val, $type) = $js->eval_in_page('to_json()');
    print "val: $val, type: $type\n";