ボタンの間に余分な二重引用符がいくつかあります。
<div id="landing" style="margin-top: -100px; top: 50%; position: absolute; margin-left: -200px; left: 50%; "><div style="font-family: 'serif6_beta_rregular'; font-size: 26pt; color: #ffffff; text-align: center;">Adrienne Adams</div>
""
<div class="sample" onclick="top.location.href='http://www.google.com'" style="background-color: rgb(35, 31, 32); color: rgb(255, 255, 255); ">Main Site</div>
""
<div class="sample" onclick="top.location.href='http://www.google.com'" style="background-color: rgb(35, 31, 32); color: rgb(255, 255, 255); ">Mobile</div>
""
<div class="sample" onclick="top.location.href='http://www.google.com'" style="background-color: rgb(35, 31, 32); color: rgb(255, 255, 255); ">Donate</div>
</div>
改行文字か何かである可能性があります。
これは違うようです:http://jsfiddle.net/webwarrior/tHwmH/3/
同じ二重引用符を追加すると、同じ効果が得られます: http://jsfiddle.net/webwarrior/tHwmH/4/
テンプレートが何をしているのかを理解するのに何日も費やしたくない場合は、次の jQuery をDocumentReady
関数に追加します。
jQuery("#landing").parent().append("<div class='temp'><div>");
jQuery(".temp").append(jQuery("#landing div"));
jQuery("#landing").empty();
jQuery("#landing").append(jQuery(".temp div"));
jQuery(".temp").remove();
ここで実際に見られるように: http://jsfiddle.net/webwarrior/tHwmH/18/