I have the following code.
Now i need to remove the text from the tag where you can find the "Google must dissappear" text
The output for that row must be
<a title="" href="http://www.google.com"></a>.
I tried to select the a tag , but i can't get only that 1 tag. I get always, all the a tags . I tried with the following each loops. But not with any result.
I can't set any class on that tag to control so that is not an option.
$('ul.menu li.dhtml-menu').each(function() {
});
$('ul.menu li.dhtml-menu a').each(function() {
});

<a>tags? Its position? In other words, what are you searching for to differentiate that tag from the others? – Widor Oct 17 '11 at 13:11