| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「MediaWiki:Common.js」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
1行目: 1行目:
 
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
 
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
 
<!-- Global site tag (gtag.js) - Google Analytics -->
 
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-3022275-1"></script>
 
<script>
 
  window.dataLayer = window.dataLayer || [];
 
  function gtag(){dataLayer.push(arguments);}
 
  gtag('js', new Date());
 
 
  gtag('config', 'UA-3022275-1');
 
</script>
 
  
 
// Template:Amazon に 画面遷移を付与
 
// Template:Amazon に 画面遷移を付与

2020年2月17日 (月) 12:26時点における版

/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */

// Template:Amazon に 画面遷移を付与
$(function () {
  $(".amazonlink").each(function(){
       var asin = $(this).find("img").attr("alt");
       asin = asin.slice(0, asin.indexOf('.'));
       $(this).click(function() {       
         window.location.href = "https://www.amazon.co.jp/exec/obidos/ASIN/" + asin + "/typea09-22";
       })
  });
}());