Print all props


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



Copy this code and paste it in your HTML
  1. var s = "";
  2. for(var a in evt){
  3. s+=a+" , ";
  4. }
  5. alert(s);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.