Sat Feb 06 2021
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
var threeMonths = document.querySelector("section[data-level='3']");
var nodeList = document.querySelectorAll(".product .pricing");
Array.prototype.map.call(nodeList, function(e) {
    e.style.paddingTop = '10px';
    e.style.borderBottom = '1px solid #000';
})