[Jquery] enable select option box Turn Back
2016-01-01 00:00:01
Jquery enable select option box (disabled attribute)
Not work
$('select[test]').attr('disabled','');
Work
$('select[test]').prop('disabled',false);
2016-01-01 00:00:01
Jquery enable select option box (disabled attribute)
Not work
$('select[test]').attr('disabled','');
Work
$('select[test]').prop('disabled',false);