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? 
Is there anyway to get access to stackoverflow’s awesome tagging system? I would like
Share
tageditornew.js
Line 308:
This might help you out!
It turns out that,
the API url is this:
q– Query text.newstyle– Require new style or not. Result in new style will be returned in JSON with additional information such as synonyms and excerpt.DEMO: http://jsfiddle.net/DerekL/bXXb7/ (with Cross Domain Requests jQuery plguin)
For example:
would give you:
where
99829is the amount of questions. It took me 15 minutes looking at the source code to find out this api. -_-“Putting in
javascriptin new style gives you this: hereWhat you can get from there:
javascript