This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
やわらかRubyはCC BY 4.0 で提供します。 | |
詳細: https://creativecommons.org/licenses/by/4.0/deed.ja | |
This work is licensed under a Creative Commons Attribution 4.0 International License. | |
See also: https://creativecommons.org/licenses/by/4.0/deed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#some_id") | |
.autocomplete({ | |
... | |
}).data("ui-autocomplete")._renderItem = function (ul, item) { ... }; | |
If you want to create the _renderItem function for multiple autocompletes with id #some_id just use it in the create event: | |
$('#some_id').autocomplete({ | |
create: function() { | |
$(this).data('ui-autocomplete')._renderItem = function (ul, item) { ... }; |
OlderNewer