Created
December 24, 2013 14:08
-
-
Save tb0yd/8113904 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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