In jquery, how can I perform an alert each time a video tag occurs in a string. Could I base something upon the each function? Let's say the string is called "getTheCurrentResults".
$(getTheCurrentResults["video"]).each(function ()
{
alert ("hello");
});