Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The html attribute I am trying to change is:

<li class="wp-has-submenu wp-not-current-submenu menu-top menu-icon-tools" id="menu-tools" style="display: none; ">

Thank you,

I know it is not detailed, but I could not think of anything else I needed to say.

share|improve this question
which attribute?? – SVS Jul 13 '12 at 19:51
When you say on page load, do you mean once the document is ready or when all the content (including images) has finishing downloading? – Mike Robinson Jul 13 '12 at 19:51

2 Answers

up vote 1 down vote accepted
    $(document).ready(function(){ $("#menu-tools").show();  });

$("#menu-tools").hide(); and $("#menu-tools").show(); should do the trick instead of using inline css. This requires jQuery.

share|improve this answer
Note that this requires jQuery, which the question does not explicitly specify. (And they use inline CSS in the background, by the way.) – minitech Jul 13 '12 at 19:55
Thanks for mentioning that. Added it to the response. – Sage Jul 13 '12 at 19:56

Since it has an ID, go ahead and refer to it by ID using document.getElementById:

onload = function() {
    document.getElementById('menu-tools').style.display = 'block';
};
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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