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.

Reply via email to