
How To Check If Javascript Event Was Triggered By Human
Posted by Weston Ganger
Sometimes you may want to check if the javascript event was triggered by a human. Turns out that e.orginalEvent
is only defined if the event was human triggered.
$('.checkbox').change(function(e){
if(e.originalEvent === undefined){
// triggered by code
}else{
// triggered by human
}
});
Related External Links:
Article Topic:Software Development - Javascript
Date:March 07, 2017
Want me to help develop your next project or application?
Contact MeSpecializing in Ruby, Rails, Crystal, Javascript, Linux, & Databases.