I\'m looking for a way to sanitize input that I paste into the browser, is this possible to do with jQuery?
I\'ve managed to come up with this so far:
For cross platform compatibility, it should handle oninput and onpropertychange events:
$ (something).bind ("input propertychange", function (e) { // check for paste as in example above and // do something })