benpere

IKEA.co.il sale 2022 - Sort by Absolute / Percentage

Jul 17th, 2022
1,673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Percentage
  2. x = []
  3. $(".plp-product-list__fragment").each(function() { prices = this.getElementsByClassName("pip-price__integer"); x.push(
  4.     [ prices[1].outerText.replace(",","") / prices[0].outerText.replace(",",""), this ]
  5. )})
  6. y = x.sort(function(a,b){return b[0]-a[0]}).reverse()
  7. y.forEach(function(x) { x[1].parentElement.parentElement.appendChild(x[1].parentElement); })
  8.  
  9.  
  10. // Absolute
  11. x = []
  12. $(".plp-product-list__fragment").each(function() { prices = this.getElementsByClassName("pip-price__integer"); x.push(
  13.     [ prices[0].outerText.replace(",","")-prices[1].outerText.replace(",",""), this ]
  14. )})
  15. y = x.sort(function(a,b){return b[0]-a[0]})
  16. y.forEach(function(x) { x[1].parentElement.parentElement.appendChild(x[1].parentElement); })
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment