How I Can Select Element With Double Class With QuerySelector()
i'm having problem when i want to select element using querySelector
Solution 1:
document.body.querySelector("ul.xoxo.blogroll")
And that is it...
Solution 2:
Try this:
document.body.querySelector('ul.xoxo.blogroll')
Post a Comment for "How I Can Select Element With Double Class With QuerySelector()"