Javascript Project

Embed Size (px)

DESCRIPTION

Project to practice javascript.

Citation preview

  • Mini Challenge: Disappearing Circles minichallenge.html !

    Learning Javascript

    #circle {

    width:200px;

    height:200px;

    border-radius:100px;

    background-color:red;

    }

  • document.getElementById("circle").onclick=function() {

    document.getElementById("circle").style.display="none";

    }