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 trialgaby ibarlucea
4,213 PointsCould one style elements written with JQuery?
I was wondering if after using .append('<button> show spoiler </button>'); if I could change styles with the button? Would it be selected in CSS and styled like an HTML element? If so, how would it be selected since it is an JQuery element?
1 Answer
Vladut Astalos
11,246 PointsIf you have a CSS rule that target that button it would apply all the styles described in that rule. If you inspect your code with developer tools after appending, you'll see that the button actually exist as an HTML element in your code.