Skip to content

Instantly share code, notes, and snippets.

@tb0yd
Created December 24, 2013 14:08
Show Gist options
  • Save tb0yd/8113904 to your computer and use it in GitHub Desktop.
Save tb0yd/8113904 to your computer and use it in GitHub Desktop.
function clearShoppingCart() {
var uls = document.getElementsByTagName("UL");
uls[0].innerHTML = "";
var totl = document.getElementById("totl");
totl.innerHTML = "$0.00";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment