Josoroma schrieb:
If i have a custom css toolbar in a form called "confirm" that doesn't
use a normal submit button like:
<input value="Register" type="submit">
Instead i need to use the following css-link-button to check the
validate before submit:
<div class="buttons"><a href="javascript:{}" class="positive"
id="button_confirmAction" style="display: block;" title="Register">
How can i do the validate and submit?
Try to submit the form via jQuery, that triggers the validation:
$("#myform").submit();
Jörn