Web/Javascript

addEventListener

aucd29 2013. 9. 26. 21:35
window.onload = function() {
    document.getElementById("nabiTitle").innerText = "Hello Nabi";

    with(document.getElementById("gingerbread")) {
        innerText = "Download file(Gingerbread)";
        addEventListener("click", function() {
            location.href="./gingerbread.tar.bz";
        }, false);
    }
}