Override JS function from another file
问题 Im trying to override a JS function from Bigcartel. I have no access to the JS file. The original is: updateCart: function(cart) { $('aside .cart .count, .main header .cart').htmlHighlight(cart.item_count); return $('aside .cart .total').htmlHighlight(Format.money(cart.total, true, true)); }, And i am trying to change it to this: updateCart: function(cart) { $('aside .cart .count, .sml .cart, .big .cart .count').htmlHighlight(cart.item_count); return $('aside .cart .total').htmlHighlight