Answers for "remove readonly from a html select using jQuery"

1

jquery remove readonly

$('#id').removeAttr('readonly');

// or
$('#id').attr('readonly', false);
Posted by: Guest on August-12-2020

Code answers related to "remove readonly from a html select using jQuery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language