I am using the Jquery Validation plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/. Is it possible to validate 2 forms with a single button using this plugin. I find this plugin very useful, but am not sure how to achieve validating 2 forms together.
<form>
<legend>Shipping</legend>
<label for="name">Name:</label>
<input type="text" id="name"></input>
<br/>
<label for="address">Address:</label>
<textarea id="address" rows="4"></textarea>
</form>
<form>
<legend>Billing</legend>
<label for="name">Name:</label>
<input type="text" id="name"></input>
<br/>
<label for="address">Address:</label>
<textarea id="address" rows="4"></textarea>
</form>
<br/><br/>
<button type="submit">Validate the Forms</button>
JSFiddle Example: http://jsfiddle.net/5bkuw/