Help for this page

Select Code to Download


  1. or download this
    
    my $doc = $ie->agent->Document;
    ...
            print "Input$c : " . $i->name . " : " . $i->value . " : " . $i
    +->type . "\n";
            $c++;
    }
    
  2. or download this
    ...
    my $field = $doc->createElement('<INPUT TYPE="hidden">');
    %{$field}->{name} = "FLUFFY";
    %{$field}->{value} = "socks";
    
  3. or download this
    Input1 : Fruit : apple : hidden
    Input2 : Animal : dog : hidden
    Input3 : language : perl : hidden
    Input4 : FLUFFY : socks : hidden