Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Which classs/ID work on Rich Text editor when a user attempts to input into a field?

Chandler BingFeb 15 2024

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.

This post has been answered by Karel Ekema on Feb 16 2024
Jump to Answer
Comments
Post Details
Added on Feb 15 2024
2 comments
566 views