失敗するコードは次のとおりです。
var newName= "jill"
$("h1").attr('itemprop','name').html(newName);
マイクロデータは次のとおりです。
<body itemscope itemtype="http://schema.org/Blog">
<div style="display:none;">
<h1 itemprop="name">jack</h1>
<img itemprop="image" src="http://somehewhere.com/something.png" />
<p itemprop="description">some text</p>
</div>
「jack」の値を「jill」に変更する必要があります。
「jill」のvar値(この例では静的ですが)は動的であるため変更されるため、G+で使用するために変更します。
よろしくお願いします!