Re: Offer data in separate places in HTML

Is there an equivalent method for doing itemref in RDFa?

thanks

Rob



On Apr 4, 2013, at 9:32 AM, darren higgins <darrhiggs@gmail.com> wrote:

> Hi Emile, 
> 
> As per Cosmin's example, use the itemref attribute to refer to the id of the offers.
> 
> I have found this article[1] useful in the past.
> 
> Regards
> 
> Darren
> 
> [1] http://dev.opera.com/articles/view/microdata-and-the-microdata-dom-api/
> 
> 
> On 3 April 2013 22:29, <lapaz@gmx.net> wrote:
> I have a product with an offer but the price and the stock information are in different places in the HTML. How can I handle this?
>  
> <div itemscope itemtype="http://schema.org/Product">
>   <span itemprop="name">Kenmore White 17" Microwave</span>
>  
>   <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
>     <span itemprop="price">$55.00</span>
>  
> >>> I don' want the availability here
>  
>   </div>
>  
>   Product description:
>  <span itemprop="description">0.7 cubic feet countertop microwave.
>   Has six preset cooking categories and convenience features like
>   Add-A-Minute and Child Lock.</span>
>   <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
>     <link itemprop="availability" href="http://schema.org/InStock" />In stock
>  
> >>> The availablity is here. Is it correct to split the offer-data?
>  
>   </div>
>  
>  
> Emile
>  
> 

Received on Tuesday, 14 May 2013 14:54:04 UTC