I have form that takes input and i have submit button and reset input type... i have issue with submit button tag in IE 7, all rest of browser and IE version >7 working fine... 

here is my code ...

 <form id="form_searchProperty" action="../jQuery Search Engine/searchPage01.html">

 //input tag for form value 

 <div class="submitCriteria">
 <button class="button_submit" >Search</button>
 <input class="button_reset" type="reset" />
 </div>

 </form>

jQuery function

 $("#form_searchProperty").submit(function () {

 var givenCriteria = $(this).serializeArray();

 });