vitalets/combodate

Toggle view

Closed this issue · 1 comments

Would be nice to offer a toggle to switch from combodate to raw text-input. Some users for a site might prefer to use the raw version especially if they know the format expected.

hi, it can be easily performed with jQuery toggle() method:

               $('button.toggle').click(function(){
                   $('input').toggle();
                   $('.combodate').toggle();
               });