vote up 1 vote down star

I have the following HTML:

<div> <a href="http://google.com"> Google </a></div>

I am using prototype library. I need to hide the div that has the link http://google.com with it. Thank you.

flag

3 Answers

vote up 2 vote down check

In Prototype:

$$('div a[href="http://google.com"]').each(function (e) { Element.hide(e.parentNode); })
link|flag
vote up 0 vote down

Is jQuery available to you?

If so, use the following code:

$(document).ready(function() {
    $('a[href=http://www.google.com]').parent('div').hide();
});

If the parent is not necessarily on the immediate next level in the DOM, use .parents instead:

$(document).ready(function() {
    $('a[href=http://www.google.com]').parents('div').hide();
});

However that might affect divs on an even higher level in the tree.

link|flag
vote up 1 vote down

You could use a CSS to do this.

<div class="hideMe"> <a href="http://google.com"> Google </a></div>

and then in a CSS do :

#hideMe {
  display:none;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.