Add Element and Class

PHOTO EMBED

Wed Sep 14 2022 07:40:17 GMT+0000 (Coordinated Universal Time)

Saved by @Jeremicah #javascript

const newSpan = document.createElement('span');
const price = document.createTextNode('but');

newSpan.appendChild(price);

const addedSpan = document.querySelector(".price_varies");
addedSpan.appendChild(newSpan);

newSpan.classList.add(0, 'money');
content_copyCOPY