I have this html.
<a class="link" href="www.website.com?id=233253">test1</a>
<a class="link" href="www.website.com?id=456456">test2</a>
How can I hide one of these links by using the href attribute, and just the last numbers (233253), to hide the link with this href attribute and the class "link"?
This is not a working code, just something i put together to explain it better. getElementsByTagName('a').class('link').href="*233253"
Update: Unfortunately it has to be pure javascript, not using a library, and it has to work on IE6.
Update2: I don't have access to the html