I'm a beginner and I'm wondering if there is a way to remove multiple attributes once without coding for each one.
For an example, please look at my code sample below.
$(".select-us").attr("disabled",true);
$(".select-as").attr("disabled",true);
$(".select-eu").attr("disabled",true);
$(".select-oc").attr("disabled",true);
I just want to know if there is any simpler way to do this. Thanks for your time.