Search This Blog

Tuesday, June 2, 2020

Oracle Apex Success Message Remove After 5 Second

Oracle Apex Success Message Remove After 5 Second


setTimeout(function() {
  $("#t_Alert_Success").remove();
}, 5000);

No comments:

Post a Comment

Java to Oracle database Connection Using JDBC

Oracle database. // Java Program to Establish Connection  // in JDBC with Oracle Database // Importing database import java.sql.*; // Import...