I'm using jqTransform in my form, and I want to disable select. jqTransform causes it not get disabled.
Please guide me if you have a solution for this.
I'm using jqTransform in my form, and I want to disable select. jqTransform causes it not get disabled.
Please guide me if you have a solution for this.
Try this :
// To disable
$('.someElement').attr('disabled', 'disabled');
or
$('.someElement').attr("disabled", "true");