ここにあるようなタグ システムを作成しようとしていますが、データベースでタグが見つからない場合は、ユーザーが送信できるようにしたいと考えています。
I'm using chosen (here) and jquery. I have chosen working how I'd like it but I can't run my .click() event. Any ideas?
Thanks
<form>
<select multiple="multiple" id="jqtags" style="width:400px;height:30px !important;">
<?php getTags(); ?>
</select>
<input type="submit" />
</form>
$(document).ready(function(){
c.init.page();
});
$('form').submit( function() {
var tags = $('#jqtags').val()
return false;
});
$("#jqtags").chosen();
$('.no-results').click(function() {
alert('123');
});
.no-results is generated by chosen and isn't there on page load if that helps anything