Skip to main content
edited tags
Link
Spudley
  • 169.3k
  • 39
  • 240
  • 309
Source Link
K.Z
  • 5.1k
  • 27
  • 120
  • 268

Button tag not working in IE 7

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(); });