jQuery( document ).ready(function() {
    // this is the trick to fix the problem of showing stupid unknown character besides 'add to cart' button when the variable price changes.
   jQuery("div.cart").each(function(i){
   var $this = jQuery(this),
    $a = $this.find('a');

    $this.html($a);

   });
});