CSS selector to select an id with a slash in the id name?
you can do it like this
$("span[id*='/about-us']")
where it will return the span with '/about-us' in it's id attribute.
you can do
$("#\\/about-us")
you can do it like this
$("span[id*='/about-us']")
where it will return the span with '/about-us' in it's id attribute.
you can do
$("#\\/about-us")