Hi, thanks for a very good tool !
I want to have a number of input elements hidden, and toggle their visibility by a checkbox - if checked they are to appear visible.
checkbox onclick js:
$('.toggleclass').toggle('fast', function() {
});
By adding this to checkbox onclick js i am able to toggle if input elements are visible by default, however if i uncheck the visible option in input properties it will not toggle at all exept for label element, it does toggle.
Ive added classname "toggleclass" to those elements i need to toggle.