Copio qui il codice, sono alle prima armi, se qualcuno può aiutarmi a capire. Grazie
<script type="text/javascript">function ClickLetter(l) { $.each($('DIV#ConsiglioNazionale UL#ElencoLettere LI'), function (index, value) { if ($(this).html() == l) { $('DIV#ConsiglioNazionale DIV#Elenco_' + $(this).html()).toggle(true); $(this).addClass('Selected'); } else { $('DIV#ConsiglioNazionale DIV#Elenco_' + $(this).html()).toggle(false); $(this).removeClass('Selected'); }; }); }
$(document).ready(function () { $.each($('DIV#ConsiglioNazionale UL#ElencoLettere LI'), function (index, value) { $(this).click(function () { ClickLetter($(this).html()); }); }); ClickLetter('A'); };</script>
<script type="text/javascript">function ClickLetter(l) { $.each($('DIV#ConsiglioNazionale UL#ElencoLettere LI'), function (index, value) { if ($(this).html() == l) { $('DIV#ConsiglioNazionale DIV#Elenco_' + $(this).html()).toggle(true); $(this).addClass('Selected'); } else { $('DIV#ConsiglioNazionale DIV#Elenco_' + $(this).html()).toggle(false); $(this).removeClass('Selected'); }; }); }
$(document).ready(function () { $.each($('DIV#ConsiglioNazionale UL#ElencoLettere LI'), function (index, value) { $(this).click(function () { ClickLetter($(this).html()); }); }); ClickLetter('A'); };</script>