css - jQuery show() function display inline. How? -
i have code problem want show li
display inline default display block , i'm not in jquery. please help..
$('ul:first',this).parent().find('> a').addclass('active'); $('ul:first',this).show(); }).on('mouseout',function(e){ $(this).parent().removeclass('expanded'); $('ul:first',this).parent().find('> a').removeclass('active'); $('ul:first', this).hide();
this works.
$('ul:first', this).parent().find('> a').addclass('active'); $('ul:first', this).css('display', 'inline'); }).on('mouseout', function(e) { $(this).parent().removeclass('expanded'); $('ul:first', this).parent().find('> a').removeclass('active'); $('ul:first', this).hide(); });
Comments
Post a Comment