I have a form view with a JavaScript that hides some of its fields on load. If a validation error occurs when I submit it, the form is reloaded with the error message as it should be. After reloadig it, the script is executed and the fields are hidden too.
But when I use the form as an overlay, it fails. I open the overlay, the script is executed and the fields are hidden. I post the form, a validation error occurs, and the form is reloaded with the error message, but this time the script that hides the fields is not executed.
Firebug says four times that jQuery is not defined. But the error is not in my code, it's in the javascript generated by plone. The form has four date fields and they generate the inline code that produce the errors:
<script type="text/javascript">
if (jQuery().dateinput) { ... }
</script>
What can I do to get my script executed after the form is reloaded under those circumstances?
I'm using Plone 4.1.4.
Thanks in advance.