Search This Blog

Friday, March 23, 2018

JavaScript Function to Convert Lower Case to Upper Case

function fn_upper(pThis){
$(pThis).keyup(function(){
this.value= this.value.toUpperCase();
});
}

No comments:

Post a Comment

Check Difference Between Two Database Objects

Step-1. Create Two DBLINK to connect with Two Database then Step-2. define logindb= DBLINKONE define remotedb= DBLINKTWO define schema_name=...