Help for this page

Select Code to Download


  1. or download this
    -onClick=>'alert("work");)
    
  2. or download this
    -onClick=>'alert("work")');
    
  3. or download this
    print $q->radio_group(
       -name    => 'type',
    ...
       -onClick => 'alert("Work")',
       -labels  => {old=> 'Current Device Type', new=>'Add Device Type'},
    );
    
  4. or download this
    my %hash = (
       old => 'Current Device Type',
    ...
       -default => 'old',
       -onClick => 'alert("Work")',
    );