I need to show a change language menu item after my Wordpress site is fully loaded. I edited the menu item css into my menu item:
.my-menu-item {
visibility: hidden;
}
and in my functions.php file i added as follows:
add_action( 'wp_loaded', 'menushow', 99 );
function menushow() { ?>
<script type='text/javascript'>
/* <![CDATA[ */
jQuery(window).load(function() {
// When the page has loaded
jQuery(".my-menu-item").css("visibility", "true");
});
/* ]]> */
</script>
<?php }
but the problem it's not working. Please help me out here...
As stated before you can use .show();, but as far as I know you have to give it the default value display: none; to work.
The Style visibility: true; does not exist, try visibility: visible; More information here!
use .show()
jQuery(".my-menu-item").show();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With