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

Wednesday, November 7, 2012

Codecademy: Sample Solution for movePiecesTo() function under "Build a Checkers Board"



//note: code exists before this line

function movePieceTo($piece,newTop,newLeft) {
    //set the css 'top' and 'left'
    //attributes of the passed piece
    //to the arguments newTop and newLeft
$piece.css('top',newTop);
$piece.css('left',newLeft);
}

//note: code exists after this line

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts