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

let me know if needed.
Comments
Post a Comment