I\'ve got this snippet of code to disable all text selection. How would I go about disabling all text except for input? I tried $(\'* :not(input)\').disableTextSelec
$(\'* :not(input)\').disableTextSelec
$(document).bind('mousedown selectstart', function(e) { return $(e.target).is('input, textarea, select, option, html'); });
Thanks to @user2873592, who mentioned that adding html here would fix the chrome scroll bar can't be dragged issue.
html