I have the following code:
<div data-type="nameHolder">
<input data-type="name" disabled="">
</div>
My idea is to keep the input disabled and only when you double click on it to enable it. However since click events are not detected on disabled elements I'm using a holder div. This works fine on Chrome, but not on Firefox. Any idea how to fix it?