I have a div and it has several input elements in it... I\'d like to iterate through each of those elements. Ideas?
It can be done this way as well:
$('input', '#div').each(function () { console.log($(this)); //log every element found to console output });