Guest User

Untitled

a guest
Feb 20th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var products = [];
  2. jQuery('.dottedlink:contains("Edit")').each(function(){
  3. var $ = jQuery;
  4. console.log($(this));
  5. var row = $(this).closest('tr');
  6.  
  7. products.push({
  8. 'name' : row.find('td:eq(1)').text(),
  9. 'displayname' : row.find('td:eq(2)').text(),
  10. 'price' : row.find('td:eq(5)').text(),
  11. 'desc' : row.find('td:eq(3)').text(),
  12. 'link' : row.find('td:eq(1) a').attr('href'),
  13. 'edit' : $(this).attr('href')
  14. });
  15.  
  16.  
  17. });
Add Comment
Please, Sign In to add comment