I have a simple html element that contains a number representing product quantity...
<h1>Product QTY</h1>
<div id=“prod-qty”>
  <div>
    <span class=“qty”>57</span>
    <div class="smalltext">Left In Stock</div>
  </div>  
</div>
- How can I use JS to decrease that number by 1 every 15 seconds?
- How can I use JS to decrease that number by 1-3 randomly every 15-30 seconds?
 
     
     
    