javascript project

Upload: ania-neal

Post on 14-Jan-2016

213 views

Category:

Documents


0 download

DESCRIPTION

Project to practice javascript.

TRANSCRIPT

  • 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";

    }