UL Select Box

Default Select Box Alternative, by using ul and li

HTML

<div>The total is $<span class="price">12</span></div>

<div>The total is $<span class="price">100</span></div>

CSS

.show{
    display: block;
    }
    
    .hidden{
    display: none;
    }

JavaScript

$(document).ready(function(){
    $('.price').each(function(i,e){
      $(this).text(parseFloat($(this).text()*2));
     });
  });