What i’m trying to do is to make the whole page unselectable and i’ve done it with this:
$('*').disableSelection();
however when you are filling out a form you can’t select it by clicking, for that i’ve changed my code to:
$('*:not(input)').disableSelection();
but this didn’t work also… i tried to call an enableSelection() for $(‘input’) but that also couldn’t override disableSelection… Any ideas?
I’ve changed it to use :input (as that includes all types of input), but input also worked:
http://jsfiddle.net/infernalbadger/kWB6g/