I've got the following which will excludes all buttons, but how can I also exclude hidden fields?
$("#selector").find(":input:not(:button)").each(function (i) { // do something
I'm sure this is probably simple, I just can't find it.
Many thanks!