Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Object-Oriented JavaScript: Challenge Making the Game Interactive moveLeft() and moveRight() Methods Solution

Tip for using on non-quirks mode page with <!doctype html> set.

The moveRight function is using style.left to position a token with an absolutely positioned parent. This requires units to work when doctype is properly declared and the browser isn't in quirks mode. See adjusted code below.

moveRight(columns) {
        if (this.columnLocation < columns - 1) {
            console.log(this.offsetLeft);
            this.htmlToken.style.left = this.offsetLeft + 76 + "px"; //include units here
            this.columnLocation += 1;
        }
    }