The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
This program toggles a script by pressing "1". The problem is, that everytime the key 1 is pressed, <form> is submitted. I want that the "onsubmit command" is running instead of submitting the form. Where is the error? The program should run as follow:
Code:
<script language="javascript"> YAHOO.namespace("example.keylistener"); function init() { document.documentElement.focus(); document.body.focus(); var handler = function(type, args, obj) { document.myformtoggle.submit();} YAHOO.example.keylistener.kpl1 = new YAHOO.util.KeyListener(document, { keys:[49] },{ fn:handler } ); YAHOO.example.keylistener.kpl1.enable(); YAHOO.util.Event.addListener(window, "load", init); </script> <script type="text/javascript"> function toggle_mydiv() { toggle_collapse('mydiv'); return false; } </script> Code:
<form action="misc.php" method="POST" onsubmit="return toggle_mydiv()" name="myformtoggle"> <input type="hidden" name="do" value="updatestudy"> <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]"> </form> I got the solution. Problem is that Javascript does not execute onsubmit when javascript itself executes the form. It is only used when the user is submitting the form. The solution is simple, change document.myformtoggle.submit();} to document.myformtoggle.onsubmit();} |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|