$('#query_txt').change(function() {
return window.location = $('#query_txt').data('url') + '/searches?query=' + $('#query_txt').val();
});
このイベントは、入力フィールドで変更が行われたときにトリガーされます#query_txt
ただし、ユーザーがこのリンクをクリックしない限り、このコードを実行したい:
<a href="#" onclick="return false;" class="select2-search-choice-close" tabindex="-1"></a>
このバージョンのcoffeescriptを試してみましたが、うまくいきません:
unless $(".select2-search-choice-close").click()
$('#query_txt').change ->
window.location = $('#query_txt').data('url') + '/searches?query=' + $('#query_txt').val()
どうすればいいですか?ありがとうございました!