click
イベントを素晴らしいフォントアイコンにバインドしたいと思います。ただし、アイコン自体はクリックできません。追加のテキストを挿入した場合にのみ、そのテキストがバインドされます。
アイコン自体をバインドするにはどうすればよいですか?
<span class="icon-star">
only this text is clickable, the icon itself is not
</span>
<script type="text/javascript">
(function($) {
$('span.icon-star').on('click', function() {
console.log($(this));
});
})(jQuery);
</script>