I am trying to select all input fields on a form (except buttons and checkboxes).
I have got as far as to select all the form input elements on a form with id "myform", but I dont know how to exclude buttons and checkbox items. Does anyone know how to do this?
this is what I have so far:
$("#myform :input")
How do I "filter out" buttons and checkboxes on the form?