How could I add event to use Autocomplete after keypress like @ or # (hashtags) and than format variants into links to insert?
1 Answer
Use jquery for it: jquery autocomplete
auto_options = { serviceUrl: '/getpincodes', width: 300, minChars:1, delimiter: /(@|#)\s, deferRequestBy: 0, //miliseconds type: "POST", isLocal:true, enable: true, onSelect: function(value, data){ return data; }, noCache: true //set to true, to disable caching }; $(document).ready( function() { $('#inputId').autocomplete(auto_options); });
@character