Skip to content
Daniel edited this page Mar 11, 2014 · 3 revisions

jQueryExpandableList

jQuery list expandable by ajax requests. The list is expanding only appears or disappears list items that are loaded by interval from the url service.

Example of usage:

$(document).ready(function(){
    var expandableList = new jQueryExpandableAjaxList({
        id: 'expandable-list',
        initUrl: 'http://example.com/initUrl',
        refreshUrl: 'http://example.com/refreshUrl',
        refreshInterval: 5000
    });
});

HTML:

<ul id='expandable-list'>
</ul>

#Documentation Documentation

#Demo Demo page

Clone this wiki locally