0
How do I use jquery to select links in a paragraph
I'm trying to use jquery to select all links in a parapgraph. I am trying to do it like this: $("p:a")
2 Answers
0
$("p a") <-- This should get all anchor tags within a paragraph tag.
0
thanks dawg