by beegee <bgulian@[EMAIL PROTECTED]
>
Jul 25, 2008 at 06:47 AM
On Jul 24, 3:31=A0am, vimal <cool.vimalsm...@[EMAIL PROTECTED]
> wrote:
> Hi guys,
>
> <input class=3D"btn" type=3D"submit" name=3D"terminate"
value=3D"Terminat=
e"
> onclick=3D"return check_proc_sel()" />
>
> i have returned false from check_proc_sel() but still the form's
> submit event is called
> It works properly in Firefox but not in IE.
> solutions???
>
> regards,
> vimal
Is it neccessary to do it this way?
How about:
<form ..... onsubmit=3D"check_proc_sel()">
=2E..
</form>
<script type=3D'text/javascript'>
function check_proc_sel()
{
I'm checkin but I don't like what I find so...
return false;
}
</script>
Bob