Categories Widget API
This straightforward API call simply returns valid Categories from your RefTracker system. There are no parameters that can be passed along – currently the API only returns an unordered list of Categories.
To begin, make sure that you’ve included a copy of the jQuery library as well as a link to the javascript file in your version of RefTracker, found on this page.
To invoke, include the following somewhere on your page:
123456789 | <div id= "RefTrackerCategories" ></div> ... <script type= "text/javascript" > (function () { $( "#RefTrackerCategories" ).refTrackerCategories(); }); </script> |