Hi, I have been designing a form with 3 tabs. I would love to hide/show one of the tabs according to the selection in a dropdown made by the user. I have checked the wizard and found no clues.
I would love to do something like
I would love to do something like
window.addEvent('domready', function() {
$('donation_1').addEvent('change', function() {
var index = this.selectedIndex;
switch(index) {
case 1:
//HIDE TAB 2 OF THE FORM
}
});
});