HTML:
<div id="text" class="text">
Hello World! <a href="#hide">CLOSE</a>
</div>
脚本:
$(function() {
if ( document.location.href.indexOf('#hide') > -1 ) {
$('#text').fadeOut('slow');
}
});
クリック後に「テキスト」divが非表示になることはありません。「www.mysite.com/#hide」に直接アクセスすると機能します。