3 <select name="folders" class="id_folders">
4 <option value="" selected="selected">-- Wybierz folder z obrazkami --</option>
5 <option value="andersen_basnie">andersen_basnie</option>
8 <div class="images-wrap">
13 <script type="text/javascript" charset="utf-8">
17 var contentDiv = this.contentDiv;
18 $('.id_folders', contentDiv).change(function() {
19 $('.images', contentDiv).fadeOut('slow', function() {
20 $(this).html('').load('{% url folder_image_ajax %}' + $('.id_folders', contentDiv).val() + '/', function() {
21 $('.images-wrap', contentDiv).data('lazyload:lastCheckedScrollTop', -10000);
26 $('.images-wrap', contentDiv).lazyload('.image-box',
27 {threshold: 640 * 10, scrollTreshold: 640 * 5}