I have used Focusin() function in jquery side with Id. When I click on textbox then we remove readony attribute as below:
HTML:
Jquery:
$("#txtCustomerSearch").focusin(function () {
$(this).removeAttr('readonly');
});
Note: it will working in IE11 and other browser.