Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* http://www.ozon.ru/default.aspx?context=cart */
- r = [];
- $('.cartTable').filter(':not(:last)').each(function() {
- r.push((function(b){
- var t=[];
- b.find('.hr').each(function() {
- var c=$(this), s='';
- t.push({
- 'photo': c.find('.photo a').attr('href').trim(),
- 'name': (s=c.find('.name a').text().trim()),
- 'author': c.find('.name h3').text().trim().substr(s.length).trim(),
- 'weight': c.find('.weight').text().trim(),
- 'delivery': c.find('.delivery').text().trim(),
- 'qty': c.find('.qty .btn').text().trim(),
- 'total': c.find('.total').text().trim()
- });
- });
- return t;
- })($(this)));
- }); r;
Advertisement
Add Comment
Please, Sign In to add comment