I am currently using a catch all method for all inputs on my form when it is being handled by jQuery.
$.each($(':input'),function()
{
//stuff
});
What I need to be able to do is see if any of those inputs is a checkbox, at the moment the only thing I can find is to say if the field is checked or not.
Any help would be greatly appreciated.