Skip to content

Instantly share code, notes, and snippets.

@okuden-labo
Created March 19, 2015 03:34
Show Gist options
  • Save okuden-labo/e59095a88395d3d9dac1 to your computer and use it in GitHub Desktop.
Save okuden-labo/e59095a88395d3d9dac1 to your computer and use it in GitHub Desktop.
jQueryでDIVをクリック可能に
/* クリック要素を大きくできます */
$(document).ready(function() {
$("div").click(function(){
//aタグから遷移先を自動取得します。
window.location=$(this).find("a").attr("href");
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment