Описание
() BL-53YH LG F400, D850, D851, D855, D856, LS990, VS985, Stylus D690 G3. : Li-ion (V): 3.8 (mAh): 3000 (Wh): 11.4 (): 74.82 x 51.04 x 5.51 (.): 12 : : Cameron Sino: : BL-53YH EAC62378905 : ... $(document).ready(function(){ var loadData = function(config) { var grid; var columns = [ {id: "title", name: "Title", field: "title"}, ]; var options = { enableCellNavigation: false, enableColumnReorder: false, showHeaderRow: false , headerHeight: 0 , headerRowHeight: 25, rowHeight : 15, fullWidthRows: true , forceSyncScrolling : true }; $.ajax({ type: 'POST', url: '/product_compatible_ajax.php', data:{ offset : config['offset'], limit: config['limit'], products_id : 5179, key_ajax: '0b6d34667c2c9a8966e4280b5e3cb1e5' }, beforeSend: function(){ $('#compatible_loader, #compatible_loader_text').show(); }, complete: function(){ $('#compatible_loader, #compatible_loader_text').hide(); }, success: function (json, textStatus) { var arr = JSON.parse(json); var data = []; for (var i=0; i< arr.length; i++) { data[i] = { title: arr[i] }; } grid = new Slick.Grid(config['target'], data, columns, options); } }); } $(document).on("click", '#linkShow', function(e){ var compatible_offset = 500; var compatible_limit = 100000; var counter = 0; var CONST_TITLE_SHOW_LIST = ' '; var title = ($(this).text() == CONST_TITLE_SHOW_LIST ? '' : CONST_TITLE_SHOW_LIST); $('#compatible_inner_addition').innerHtml = ''; $('#compatible_content').toggle(); loadData({offset:0, limit: compatible_limit, target: '#compatible_content'}); $(this).text(title); e.preventDefault(); return false; }); });