Jquery plugin not working for Dynamic validation

Jquery plugin not working for Dynamic validation

I have used jQuery Validate plugin for my page.I am using some inputs dynamically in my page.for example my page have 12 inputs separated by 4 sections.Each section have 3 fields.

I am checking following conditions for my output
1.clicking the Go button it compulsory validate the first section of the page(first 3 fields).
2.Then enter the value in other any section it also validate when I clicking the Go button.
for example I am entering the value in Second section input it validate first and section of the page and throws error.


I have tried my best for this dynamic validation.But i Can't get my output.Because I am new to Jquery plugin validation part.Can any one help for my output?its urgent.


My code:

<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://jzaefferer.github.com/jquery-validation/jquery.validate.js">           </script>
   
<form class="form-horizontal" id="register" method='post' action=''>
<table class = "Test">
<tr>
<td>Name:</td> 
<td>
   <input id ="NameInput" type="text" />
</td>
</tr>
<tr>
<td>LastName:</td>
<td> <input id ="LastName" type="text" /></td>
</tr>
<tr>
<td>Email:</td>
<td><input id ="EmailInput" type="text" /></td>
</tr>  
<tr>
<td>Name:</td> 
<td>
   <input id ="NameInput" type="text" />
</td>
</tr>
<tr>
<td>LastName:</td>
<td> <input id ="LastName" type="text" /></td>
</tr>
<tr>
<td>Email:</td>
<td><input id ="EmailInput" type="text" /></td>
</tr>  
<tr>
<td>Name:</td> 
<td>
   <input id ="NameInput" type="text" />
</td>
</tr>
<tr>
<td>LastName:</td>
<td> <input id ="LastName" type="text" /></td>
</tr>
<tr>
<td>Email:</td>
<td><input id ="EmailInput" type="text" /></td>
</tr>  
<tr>
<td>Name:</td> 
<td>
   <input id ="NameInput" type="text" />
</td>
</tr>
<tr>
<td>LastName:</td>
<td> <input id ="LastName" type="text" /></td>
</tr>
<tr>
<td>Email:</td>
<td><input id ="EmailInput" type="text" /></td>
</tr> 
<button type="submit" class="btn btn-primary">Go</button>
</table>
</form>
$(document).ready(function() {

var validator = $("#register").validate({
    messages: {
            NameInput: "Please enter your name", 
            LastName: "Please enter LastName",
            EmailInput: { 
               required: "Please enter your name", 
               email: "Please enter a valid Email" 
            }

    }

  });
  });