Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, December 17, 2012

Codecademy Sample Solution: Codeyear One Last Touch



//sample solution to script.js

//code exists prior to this point

// Exercise 5
function addBarClickEvent($bar,value) {
    // add a click event to the bar that
    // pops up an alert with the bars value
    $bar.click(
        // your code goes here!
        function(e){
            alert(value);
        }
    );
}

//code exists after this point

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts