I have a link that looks like this:
<a href="//href" itemscope itemtype="http://schema.org/Product">
<img src="src" itemprop="image">
</a>
I'd like to put itemprop="url"
in the <a>
tag, but it contains the itemscope
for that product. Can I put that at the same level as itemtype=
?
Or, do I either need to wrap the whole thing in a div to make it work, or use a <meta>
tag for the itemprop="url"
microdata? Thanks!