SharePoint
JavaScript code quality – browser compatibility improvement
Just a very quick tip about fixing two common mistakes, which would make your JavaScript code throw error in some browsers. Shame Code 1: console.log(“log some message”); Never use a naked console.log() as you don’t know if the client browser has debug tool or not. If the client browser is Read more…