i would like to fill the textbox autocomplete stringcollection "on the fly" while typing. using with the Particular symbols Like @,#
Same as twitter "Compose new tweet" textbox
And the Data from the backend
Use the article
Configure jQuery AutoComplete select multiple ( multi word )
And just change the line in select event handler
this.value = text.join(", ");
to
this.value = text.join("@ ");
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.