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 trialJenny Swift
21,999 Pointsfirebug tutorials for working with javascript
Hi, can anyone please recommend any good tutorials on how to use firebug when working with javascript, and also how to use firequery? There are no errors showing up but my code isn't working. I'm getting an idea of how to use firebug for fixing problems with css and html but I don't know how to with javascript. I'd like to be able to select an element and see what javascript is being applied to that element, like I can do with css. And I have firequery but I don't know how to use it.
2 Answers
John Fu
2,209 PointsYou have to click on the console tab in order to type in javascript statements. If you have jQuery installed on the page you're working on, it's dead simple to select an element. Let's say you want to select the element with id="pnlText". All you have to type in the console is:
$("#pnlText");
however, if you do not have jQuery installed, you can do so by typing in:
document.getElementById("pnlText");
Here's a very good reference to the interchangeables between jQuery and pure JS http://youmightnotneedjquery.com/
John Fu
2,209 PointsYou're very welcome Jenny.
Jenny Swift
21,999 PointsJenny Swift
21,999 PointsThank you John.