Rainmaker has asked for the wisdom of the Perl Monks concerning the following question:
function add(F){ x_populate(print1); } function print1(N1) { document.write(N1); document.write('Its Me'); } my $msub = sub { return 'Hey'; }; Sajax::rs_init(); Sajax::rs_register("populate",$msub); //followed by some other Sajax functions //calling add() function <SELECT NAME="selectCourseDept" onChange="add(); return false;">
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Calling Perl function from HTML code - using SAJAX
by ikegami (Patriarch) on Jul 29, 2005 at 19:54 UTC | |
by Rainmaker (Acolyte) on Jul 29, 2005 at 20:32 UTC | |
|
Re: Calling Perl function from HTML code - using SAJAX
by esskar (Deacon) on Jul 29, 2005 at 19:51 UTC | |
|
Re: Calling Perl function from HTML code - using SAJAX
by Joost (Canon) on Jul 29, 2005 at 19:56 UTC |