Disable particular field

How to disable particular field via client script?

Ex:- <select disabled>

I used this one and It’s working.

$("select[data-fieldname='field_name']").prop("disabled",true);

Is there any other way to disabled?

@mohsininspire
frm.set_df_property("field_name","read_only",1);
or hidden with
frm.set_df_property("field_name","hidden",1);

I want to show select fields to every users and every times.