Any ideas why preventDefault is not working? Here\'s the code below . . . Tks!
You can’t use preventDefault on change events because it’s not cancelable:
preventDefault
$("#text1").change(function(e) { alert(e.cancelable?"Is cancelable":"Not cancelable"); });
The cancelable property is true only on events that can be prevented.
cancelable