Skip to content

Instantly share code, notes, and snippets.

@coder618
Created July 3, 2018 11:30
Show Gist options
  • Save coder618/7569eb9604c6c3b178421d95600e9728 to your computer and use it in GitHub Desktop.
Save coder618/7569eb9604c6c3b178421d95600e9728 to your computer and use it in GitHub Desktop.
// Class toggle for all btn
$('button.btn').on('click', function(){
var ele = ($(this).attr("data-ele-target").length) ? $(this).attr("data-ele-target") : null ;
var class_name = ($(this).attr("data-ele-toggle").length) ? $(this).attr("data-ele-toggle") : null ;
(ele && class_name) ? $(ele).toggleClass(class_name) : null;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment