I am pretty new to Microdata.
I have a HTML string with Microdata. I am trying to figure out if it\'s possible to extract the required information dynamically using
Check this Fiddle
$("span[itemprop='name']").each(function(e) { if ($(arguments[1]).text() == 'Blendmagic') { alert($($("meta[itemprop='ratingValue']")[e]).attr('content')); } });