回転式改札機を使用せずに、リンクのクリックをキャプチャしてデータベースに保存したいと考えています。現在のコード
$( ".ads-box a" ).click(function( event ) {
event.preventDefault();
var href = $(this).find('a').attr('href');
var id = $(this).find('a').attr('id')
console.log(href);
console.log(id);
console.log(this);
});
と
<div class="ads-box" id="adbox-35"><a href="http://www.makeitrightnola.org" id="ad-35" target="_blank"><img src="/g/shows/sidebar/83172823_ad_image.png" alt="Make It Right"></a></div>
コンソールでプロデュース
undefined
undefined
<a href="http://www.makeitrightnola.org" id="ad-35" target="_blank"><img src="/g/shows/sidebar/83172823_ad_image.png" alt="Make It Right"></a>
リンクの属性にアクセスするにはどうすればよいですか? 何がうまくいかないのですか?