My template JSP has the following JQuery code in head secion
<script language="javascript" type="text/javascript">
jQuery(document).ready(function($) {
// bind form using ajaxForm
$('.queueForms').ajaxForm();
});
</script>
My calling code is in another JSP which is included in the template
code above:
<form class="queueForms" id="htmlForm" action="/MarketFrontend/
soDetailsQueueNote.action" method="post">
Message: <input type="text" name="message" value="Hello HTML" /