There is a option in HTML with let's you do this kind of thing:
readonly="true"
Add this to your input field element. It will sort of "disable" the input field, but still fires events when something is done with it (like clicking on it).
Check out W3Schools Readonly Attribute for more information.