I have a text input that i want to hide it's blinking cursor.
I found a solution (setting color to transparent) that working fine in FireFox and Chrome but this solution didn't work in IE.
Is there a solution for this?
<input type="text" value="dummydummydummy" tabindex="-1" id='test' style="cursor: none;color: transparent; width: 0px; height: 0px; background-color:transparent; border:solid transparent 1px; outline: none; position: absolute; z-index: 2000"/>
Also I don't want to blur the control immediately after input gets focus. because I need the control to be focused.
note : I am testing this in IE8