Skip to content

Instantly share code, notes, and snippets.

@masterpoppy
Created December 18, 2016 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masterpoppy/bb29f10ff8913847ce880c0de34cb6f0 to your computer and use it in GitHub Desktop.
Save masterpoppy/bb29f10ff8913847ce880c0de34cb6f0 to your computer and use it in GitHub Desktop.
$('a[href^=http]').click(function(e) { //正規表現をつかってhttpを含む<a>タグを抽出する
//ハイパーリンクのデフォルトのクリックイベントをキャンセル
e.preventDefault();
//リンクURLの内容をajaxでhttp-inに送信
$.ajax({
'type': 'POST',
'url': location.href,
'data': JSON.stringify({
'link': this.href
})
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment