Check if a Javascript Function Exists or Is Defined


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. if(typeof yourFunctionName == 'function') {
  2. yourFunctionName();
  3. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.