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 trialUnsubscribed User
1,890 PointsWhy can't we do this? document.querySelector('MyTitle');
instead we have to do it like this: ('[title=MyTitle]')?
1 Answer
Nicholas Grenwalt
46,626 PointsIf you just inserted 'MyTitle' into querySelector it would be looking for a regular dom element with the name of 'MyTitle' specifically. When you use the bracket syntax you are searching for attributes that match a particular value on an attribute. In this case, they are looking for the first occurrence of an element where it's title attribute is set to MyTitle. It has nothing to do with what the actual text happens to say inside the element, but rather it is just for targeting purposes for styling, manipulation, etc..