Click here to Skip to main content
15,903,175 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to get list of iteam by pointing to a menu tab in asp.net
Posted
Comments
Krunal Rohit 22-Mar-14 11:31am    
Elaborate.

-KR

1 solution

you can use something like this using jquery

$(document).ready(function () {

$('#menu').toggle(function () {
$(this).text('Show');
$('#divitemlist').hide();
}, function () {
$(this).text('Hide');
$('#divitemlist').show();

});
});


I hope you are looking for something like this
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900