Last active
August 29, 2015 14:09
-
-
Save juyal-ahmed/49a23a19b94d47026f28 to your computer and use it in GitHub Desktop.
Twitter Botstrap Dropdown Navigation vs WordPress
JS:
/*
---------------------------------------------------------------------------------------
jQuery Initializing JavaScripts
---------------------------------------------------------------------------------------
*/
jQuery(function () {
/*
---------------------------------------------------------------------------------------
Main menu adjustment for twitter bootstrap dropdown menu
---------------------------------------------------------------------------------------
*/
jQuery('.nav .dropdown').each( function(){
jQuery(this).find('> a').addClass('dropdown-toggle').attr('data-toggle', 'dropdown');
if ( jQuery(this).find('> a').find('span.caret').length <= 0 ) {
jQuery(this).find('> a').append('<span class="caret"></span>');
}
jQuery(this).find('> ul.sub-menu').removeClass('sub-menu').addClass('dropdown-menu');
} );
});
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HTML: