I am using Jquery to show or hide element of <ul> with the following code:
Code: Select all
$('#menu ul:first').show();Code: Select all
$('#menu ul:last').show();Please help me..
Thanks in advance...
Moderator: General Moderators
Code: Select all
$('#menu ul:first').show();Code: Select all
$('#menu ul:last').show();Code: Select all
$('#menu ul li:eq(1)').show()