if I have a page of iFrame objects with generated (unique) ids is it possible for me to return those ids if they .haveClass('specific_class')... For instance: I want to scrape the entire page pick out elements with a specific class and return their unique ID how would I go about doing this?
I think I am misusing jquery's selector as it is not hitting true on my if statement. //i've tried a few iterations of this to figure out the selector and I am still a bit confused.
if($(document).hasClass('specific_class'))
{
alert("You found a iframe with this class");
//return the iframe with this class's id
}
Any help is appreciated as I am pretty new to Jscript - as a side note I am doing this with ASP.net so I'm not sure if that is part of the problem.
Thanks, Mitch