Hi All,
I use a small Javascript/JQuery code (as shown below) in my application on text fields, I added that code on “Execute when Page Loads” section on the page and added/called test_jquery class in the “CSS Classes” under “Advance property” for the field and it is working fine as excepted, However,the same function doesn't get called or work on Text rich editor field, I didn't understand what the class or ID call on Rich text editor ?
$(document).ready(function(){
$(".test_jquery").on("input", function(){
alert('Test');
});
});
I want to use this as a function that perform validation checks when a user attempts to input into a field, not after the changes (dynamic actions) .
did anybody know what i can change in code so that work on rich text editor field also, Please.