Category: jQuery

  • Reversed version of cycle2 plugin Scroll Vert

    Reversed version of cycle2 plugin Scroll Vert

    This is reversed version of the Cycle2 plugin used to animate slides vertically. In my version animation goes from bottom to top. Download reversed version from Github: https://github.com/fedek6/ScrollVert-reverse Download original version and check documentation at: http://jquery.malsup.com/cycle2/demo/scrollVert.php

  • jQuery advanced filter list plugin

    jQuery advanced filter list plugin

    This is a plugin for realtime list filtering using a text input. It’s very simple in use. Look at examples below: Init filter: $(document).ready(function() { $(‘ul.dynamic-search-list’).filterList({ inputSelector: ‘#filter-input’ }); }); inputSelector is the only option required by plugin. It’s a jQuery selector for input field that will be used for list filtering. Detach filter: $(‘ul#2’).filterList(‘detach’); […]