I have the following code with the intention of locating values from within a targeted div as follows:
$('#combineDiv').children().each(function(){
if ($(this + ":first-child").attr('class') == 'combinedColumn') {
alert('found ONE!');
}
});
I have a hidden input in some of the divs within the children of the div '#combineDiv'... but, I dont know how to combine the 'THIS' keyword with the appropriate selector... :(
.filter("selectors"),i.e.$(this).filter(":first-child")....