c# - Hiding panels with different names in one repeater using jQuery? -


can 1 me hiding panels different names in repeater using jquery?

the main logic have documents sorted year in tabs, , tab name year. when client clicks on 1 specific tab, should provide him see documents have year property. documents per year nested in panel(div),and panel's name related tab name, year. should somehow hit panel name, , if it's same name tab,to show documents per year...

thanks in advance!

if add css class each element want hide in repeater, this:

$(document).ready(function () {     $('.hideme').hide(); }); 

to show elements again, can call:

$('.hideme').show(); 

here's reference jquery's hide , show functions.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -