Script is actually quite simple:
jQuery(document).ready(function()
{
setTimeout( function()
{
jQuery('.menu-header').fadeOut();
}, 2000);
});
And should show menu after everything is loaded... And it works! But not with wordpress.. Also I know, that we should use jQuery insted of $. In my functions.php I add jquery:
add_action( 'wp_enqueue_script', 'load_jquery' );
function load_jquery()
{
wp_enqueue_script( 'jquery' );
}
But this script is not working at all...
Any suggestions?
alert(jQuery.fn.jquery)
and tell us what that outputs.