/* Written By: Hybrid Forge www.HybridForge.com Written for Interprise Suite eCommerce 5.3 Note: assumes you've wrapped your minicart by a div/span/something with id="miniCart" */ // JQuery Mini-cart Update $(document).ready(function () { // remove table border $("#miniCart table table").css({'border-width' : '0'}); // align the table contents to left $("#miniCart table table td").attr({align : 'left'}); // if empty cart, show text if ($("#miniCart").text() == "") { $("#miniCart").append("

Your Shopping Cart is Empty.

"); }; }