let's say I have some html document with a lot of text. Is it "good" (~not bad :)) to have elements that contain microdata and hide those elements so that user won't actually see them?

Let's say I have this:

<div style="display:none" itemscope...>some microdata describing div below</div>
<div> There is actual text that is described by microdata</div>

The point is that this way it may be easier to describe the 2nd div. You don't have to make changes in whole text, just add some elements and hide them. I want to create simple HTML editor that would support creating microdata and this way seems to be easier to implement and personally easier to use (first create actual content, then annotate it).

link|improve this question

70% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Hiding content marked up with Microdata sort of defeats the point of it, it is intended to add additional information about stuff that's already visible on the page. The main argument for this is that people always remember to update visible content, but frequently forget to update content they can't see, so hidden 'meta' content is frequently out of date and inaccurate. Microdata instead takes the approach of describing what the visible content is, so if the content changes the data it produces changes. Take this example from the spec:

<h1 itemprop="fn">
  <span itemprop="n" itemscope>
    <span itemprop="given-name">Jack</span>
    <span itemprop="family-name">Bauer</span>
  </span>
</h1>

If you change the visible content none of the Microdata markup actually changes:

<h1 itemprop="fn">
  <span itemprop="n" itemscope>
    <span itemprop="given-name">Tim</span>
    <span itemprop="family-name">Berners-Lee</span>
  </span>
</h1>

So Microdata is almost certainly not what you want to use in your situation. What you really ought to use instead depends on exactly what you want this information for. If you want to add hidden data for processing with scripts on your site then instead use data-* attributes. If you want to add additional descriptive information that not all users need to see, consider using ARIA. Particularly, in your case, aria-describedby.

link|improve this answer
feedback

Hidden text (or as you say microdata) on web site is prohibited. It affects search results and that web site can be blocked by search engines.

Here you've got nice guide what can and what can't do: http://searchengineland.com/guide/seo

link|improve this answer
I was kind of afraid of that and I can understand problem with using it to add some extra keywords/headings etc. But I thought that this could be possible or common workaround – ladar Jan 18 at 0:51
1  
"Prohibited"? No it's not, not by a long shot. – Wesley Murch Jan 18 at 14:21
1  
Microdata is not just 'hidden text', it's an actual thing. – robertc Jan 18 at 14:23
You're right. My fault. – Kobra Jan 18 at 18:10
feedback

Are you going to be doing anything with the hidden data? I'd use HTML comments or the title attribute.

HTML Comments:

<!-- This is an HTML Comment -->
<div>Content</div>

Title Attribute:

<div title="some information describing div">Content of div</div>

HTML comments are, of course, just like comments in programming languages, except they go through to the client. The standard title element attribute (available for all html elements) holds extra information on the element, and is used like a tooltip when hovering over the element.

For instance, the HTML for your accept rate up there is:

<div class="accept-rate cool" title="this user has accepted an answer for 4 of 6 eligible questions">67% accept rate</div>

Which if you hover over it it says "this user has accepted an answer for 4 of 6 eligible questions".

link|improve this answer
Thanks, unfortunately, I need microdata since they will be used for other purposes and microdata (or RDFa etc.) offers better ways to add some semantic information than title or comment – ladar Jan 18 at 0:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.