Code examples
Bind to the change event by type: jqxTextArea.
$(‘#jqxTextArea’).on(‘change’, function(event) {
var value = $(‘#jqxTextArea’).val();
var type = event.args.type; // keyboard, mouse or null depending on how the value was changed.
});
yet when I try to access the type attribute it has the value of “undefined” instead of “keyboard” when i edited the text area.