ハイライトを選択したときに一度に1つのアイテムだけをハイライトしたいリストを作成しました。アイテムがハイライトされているので、ボタンを有効にする必要があります。以下の例:
$('#sn-list li a').click(function () {
$(this).parent('li').toggleClass('highlight');
if (!currentPage.parent().hasClass('highlight')) {
$('#tabulation_button').removeProp("disabled");
alert('hello');
}
else {
$('#tabulation_button').prop("disabled", "disabled");
}
});