dotku
5/16/2017 - 11:10 PM

Bestbuy Refrigerator Size VS Price.md

README

  1. Please click all "tab to view price" button
  2. Run the script below
  3. Paste the result to Excel/Google Sheet and Sort
$(".sku-title").each(function(i, o){console.log($(o).text().split('-')[1].split('Cu')[0].replace( /^\D+/g, '') /  $(o).closest('.row').find('.pb-purchase-price').eq(0).text().replace(/^\D+/g, ''), $(o).text(), $(o).next('.sku-model').text(), $(o).closest('.row').find('.pb-purchase-price').eq(0).text().replace(/^\D+/g, ''))})
// Prettified
$(".sku-title").each(function(i, o){
  console.log(
    $(o).text().split('-')[1].split('Cu')[0].replace( /^\D+/g, '') / 
    $(o).closest('.row').find('.pb-purchase-price').eq(0).text().replace(/^\D+/g, ''), 
    $(o).text(), $(o).next('.sku-model').text(), 
    $(o).closest('.row').find('.pb-purchase-price').eq(0).text().replace(/^\D+/g, '')
  )
})