|
One thing that can cause this error too is that your javascript is placed below the form.
Check this out, javascript is interpreted before the end of the page loading, so if your form is placed after it, it will try to access your form before the browser have displayed id, thus the "no action" effect...
Either place your javascript after the form, or use a function that will be called upon the document.onLoad trigger.
__________________
Listen to the ducky: "This is awesome!!!"
|