I'm having an issue with Mysite, the navigation bar is javascript and bits of jquery, I've played around with some code to try and get the navigation bar to load before page view but cant seem to find the right code.What would be the correct way to achieve this?
closed as not a real question by Jeremy Banks, Chris, DarkCthulhu, Druid, nickb Aug 3 '12 at 2:32
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Move the inclusion of your script into the |
|||||||
|
|
Simple answer is you can't touch your HTML with JS until it has been placed on the page. Consider this:
The method will fail because element A is yet to be defined. The closest you can get is:
Note that using inline scripts like this can severely affect the load performance of your page. You should try to make your page "work" without JS then apply the JS on page load:
|
|||
|
|
|
As far as I know theres no way to really load HTML before the Page starts. You should use JQUERY Events to wait with displaying the toolbar until it is loaded. Or maybe just set"display:none" to your toolbar, then use window.onload event to display the toolbar after adding all the Effects. |
|||
|
|
|
The script will execute whenver the page loads
OR u do with jquery whenever the dom is ready
|
|||||
|
|
There are a few things that can help:
Pick and choose any of the above options, or use all of them together |
|||
|
|