Skip to content

Instantly share code, notes, and snippets.

@santhosh17s
Created September 5, 2018 09:45
Show Gist options
  • Save santhosh17s/6fa3fa324884c58934f69eba7ec53c43 to your computer and use it in GitHub Desktop.
Save santhosh17s/6fa3fa324884c58934f69eba7ec53c43 to your computer and use it in GitHub Desktop.
$('document').ready( function(){
//WITHOUT ARROW FUNCTION
$('.my-name').on('click', function() {
var that = this;
setTimeout( function() {
$(that).toggleClass('on');
}, 1000);
});
//WITH ARROW FUNCTION
$('.my-name').on('click', function() {
setTimeout( () => {
$(this).toggleClass('on');
}, 1000);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment