How to get all A Tags except within a div class?
Hello,
a short script puts animations to all anchors (a href starting with #) of my site.
This works fine.
In my script i use:
var allLinks = document.getElementsByTagName('a');
I know this is not jquery but:
With jquery how can i get all A Tags from my page except these one/s within a specified div class?
Greets