Is there anyway to get access to stackoverflow's awesome tagging system? I would like to borrow Stack's awesome auto-suggest and tag mini-explanation boxes for my own site. Obviously, I can use the jQuery UI auto-suggest for tags but I would really like to also include the cool little tag descriptions as well. If not, can someone tell me where all these explanation/descriptions came from so that I can implement a similar system? 
|
|
||||
| show 5 more comments |
|
tageditornew.js Line 308:
This might help you out! MOREThe API is this:
Replace
would give you:
where Putting in
What you can get from there:
Unrelated |
|||||||||||||
|
|
If you're looking for high-level logic, in a nutshell it's just a custom auto-complete that's blazing-fast. Whenever you type a tag (i.e. a new word or one separated by a space from previous tags), an AJAX request would be made to the server with a JSON object which is then interpreted by the client-side script and presented in the usable layout. Comparing the autocomplete JSON objects for letter "h" and word "html" should give you enough insight into how this particular implementation works (if prompted, these can be opened with any text editor). On a somewhat unrelated note: the autocomplete responses have to be fast. Depending on the complexity of the data autocomplete is run against, you may find how IMDb magic search works intriguing. Update:Seeing your comment about accessing the content of the tag library, this may in fact be more of a meta question. I struggle to think of a scenario where using an API if any or just the tag library from an external resource would be beneficial to SO - however content here is provided under Creative Commons so you may be able to use it with proper attribution. This does not constitute legal advice :) |
|||||||||
|

view-source:http://stackoverflow.com/. – Derek 朕會功夫 Jun 18 '12 at 4:34StackExchangeobject. (in the console, typewindow.StackExchange) – Derek 朕會功夫 Jun 18 '12 at 4:52