I want to find all elements in a form with one or more classes assigned to them.
eg: something like:
var formElements = $('#MyForm').find('.classA .classB')
if some elements have classA assigned and some elements have classB assigned, will an element having both be returned more than once?