Search code examples
jqueryhreflocation-href

jQuery: find element with an href of X


I need to be able to check the following:

$(".main-menu a")

For a specific href attribute and then addClass


Solution

  • $(".main-menu a[href='http://somesite.com']").addClass('someClass');