[jQuery Faviconsライブラリ] リンクの前にファビコンを表示する

説明

jQuery Faviconsライブラリでリンクの前にファビコンを表示するにはfaviconsメソッドを使います。ファビコンを前に表示するか後に表示するかはinsertオプションにinsertBeforeまたはappendToの文字を指定します。

サンプルプログラム

【HTML】
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery.favicons.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>Favicon表示</h1>
<ul id="myLink">
<li><a href="http://www.google.co.jp/">Google (Japan)</a></li>
<li><a href="http://www.yahoo.co.jp/">Yahoo Japan</a></li>
<li><a href="http://www.asahi.com/">asahi.com</a></li>
<li><a href="http://jsgt.org/mt/01/">JavaScript++かも日記</a></li>
</ul>
</body>
</html>


【sample.js】
$(function(){
$('#myLink').favicons({
insert: 'insertBefore'
});
})
サンプルを実行
[戻る]