SwVitaliy

Untitled

Jul 20th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* http://www.ozon.ru/default.aspx?context=cart */
  2. r = [];
  3. $('.cartTable').filter(':not(:last)').each(function() {
  4. r.push((function(b){
  5.  
  6. var t=[];
  7. b.find('.hr').each(function() {
  8. var c=$(this), s='';
  9. t.push({
  10. 'photo': c.find('.photo a').attr('href').trim(),
  11. 'name': (s=c.find('.name a').text().trim()),
  12. 'author': c.find('.name h3').text().trim().substr(s.length).trim(),
  13. 'weight': c.find('.weight').text().trim(),
  14. 'delivery': c.find('.delivery').text().trim(),
  15. 'qty': c.find('.qty .btn').text().trim(),
  16. 'total': c.find('.total').text().trim()
  17. });
  18. });
  19. return t;
  20.  
  21. })($(this)));
  22. }); r;
Advertisement
Add Comment
Please, Sign In to add comment