Jquery の初心者で、それを学ぼうとしています。次のコードがありますが、何らかの理由で画像が読み込まれません。run コマンドで同じリンクを実行すると、画像が表示されます。firebug でデバッグすると、指定された URL の読み込みに失敗したと表示されます
<!DOCTYPE html>
<html><head>
<title>Furry Friends Campaign</title>
<link rel="stylesheet" type="text/css" href="c:/jquery/Chapter-1/begin/styles/my_style.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<div id="clickMe">Show Me the Furry Friend of the Day</div>
<div id="picframe">
<img src="c:/jquery/chapter-1/begin/images/img_0229.jpg">
</div>
<script src="scripts/jquery-1.6.2.min.js"></script>
<script>
$(document).ready(function(){
$("#clickMe").click(function() {
$("img").fadeIn(1000);
$("#picframe").slideToggle("slow");
});
});
</script>
</body>
</html>