Search This Blog

Saturday, October 3, 2020

Call to Mobile Number In Oracle Apex Iitem

1. Create a item like 

P1_MOBILENO

2.Copy-Pest the code into function and Global variable Declaration 

$( document ).ready(function() {

        $("#P1_MOBILENO").click(function(){

            var lnk='tel:+88'+this.value;

         //   alert(lnk);

            window.open(lnk, '_self');       

});

    

PDF to Text Covert by Oracle Apex

Here are the steps to convert and get the character into a region by Oracle Apex. Step1.  Create a page and Copy-Pest the below code into Pa...