php - How to implement tages mechanism like stackoverflow tag -


how implement tages mechanism stackoverflow tag?

using php, mysql , js.jquery

wendy, there jquery ui plugin (tag it) on github, provides same functionalities so autocomplete tags

here link download : https://github.com/aehlke/tag-it

and here home page link : http://aehlke.github.io/tag-it/

and small demo code can use below

<script type="text/javascript">     $(document).ready(function() {         $("#mytags").tagit();     }); </script>  <ul id="mytags">     <!-- existing list items pre-added tags -->     <li>javascript</li>     <li>python</li>     <li>haskell</li> </ul> 

see screenshot below

enter image description here

let me know if needed.


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -