Follow below simple steps to auto-hide the notification message in Oracle APEX.
Environment: Oracle APEX 5.0.3
Step1: Create a Dynamic Action in Global Page (Page 0 in my case)
Step2: Create a JS action and add below code.
$( document ).ready(function() {
$( "#t_Alert_Success" ).fadeIn( 3000 ).delay( 1500 ).fadeOut( 400 );
});
Step3: It’s done!!!
No comments:
Post a Comment