I am trying to get at all the 'a' tags surrounded by a div tag with an
id of 'id'
This doesn't seem to do it, picks up all 'a' tags
Any thoughts?
Thanks,
Chris
id of 'id'
This doesn't seem to do it, picks up all 'a' tags
Code:
links=document.getElementsByTagName(id).getElementsByTagName("a");
Thanks,
Chris
Comment