tags:

views:

10

answers:

0

How I can have 4 UI DatePickers open at the same time ?

$("#picker1").show();
$("#picker2").show();
$("#picker3").show();
$("#picker4").show();

Don't work, only the last is shown

$("#picker1, #picker2, #picker3, #picker4").show();

The same as above...

Any ideas ?