how to disable a select list?
Hi,
I have 2 select lists that, at times, I need to disable so they are greyed out and non-clickable.
Lets say one is called mlist and the other clist, my code is as follows (as this worked for some buttons I have), but this does not work for select lists, any idea what I need to do please?
Disable:
var mlist = Tiggzi('mlist');
var clist = Tiggzi('clist');
mlist.addClass('ui-disabled');
clist.addClass('ui-disabled');
Enable:
var mlist = Tiggzi('mlist');
var clist = Tiggzi('clist');
mlist.removeClass('ui-disabled');
clist.removeClass('ui-disabled');