I create a form wizard (previous and next) and want to use a validation, I have multiple id to be applied on the form as an id.
this is javascript for form wizard
<script type="text/javascript">
var myform=new formtowizard({
formid: 'fslide',
persistsection: true,
revealfx: ['slide', 500]
})
</script>
and this is javascript for validation
<script>
$(document).ready(function() {
$("#formID").validationEngine()
});
</script>
i have fslide and formID to the call in the form like this
<form action="" method="post" target="_self" id="??">
please some one help me how so that id=?? it can work..
thanks all.