Description
|
In my template, I coded the following to execute my own javascript function upon submisson of the form:
<teform transaction="comment/use" extra='onsubmit="dosubmit()"'>
and the following is what was generated in the web page:
<Form name="Surf_Form" onsubmit="return ss_Submit()"
action="/surfer/form/comment/use/6_Dea22869774_22889583"
method="POST" onsubmit="dosubmit()">
So, the "return_ss_submit" function is executed upon form submission instead of my "dosubmit" function.
|