Ok, thank you very much i got this! Also, just to know is there any site/books that specifically 'speaks' about the limitations of the various web browsers?
On Jan 30, 8:31 pm, MorningZ <morni...@gmail.com> wrote: > So what he talks about > > function showHide() { > if ($(this).val() == "1") { $('#datasingola').hide('slow'); } > > } > > and then > > <select name="gruppi" onchange="showHide()"><option id="nascondidata" > value="0">Nessuno..</ > option><option value="'1'">Ciao</option>...</select> > > takes the <option> out of the equation, which as you are finding out, > isn't very manipulatable in IE > > On Jan 30, 1:43 pm, GreatBigBore <robfbis...@mac.com> wrote: > > > If adding a click handler in $(document).ready() doesn't work, you > > could always add a change handler to the <select> and just check the > > value. I did this in a recent project and it works fine.