I want to disallow user from select a content of input control by css. Im trying to add the following attributes to the control:
#editContainer
{
user-select: none
-webkit-user-select: none
-khtml-user-select: none
-moz-user-select: none
}
<div id='editContainer'>
<input id='daysInput' />
<span id='daysString'></span>
<input id='hoursInput' />
<span>:</span>
<input id='minuteInput' />
</div>
but it is not working...
how can i prevent from users to select content of controls?