Skip to content

Instantly share code, notes, and snippets.

View GoodNew5's full-sized avatar
🏠
Working from home

GoodNew5 GoodNew5

🏠
Working from home
View GitHub Profile
@GoodNew5
GoodNew5 / controller.js
Last active June 3, 2017 00:17
controller.js
function uiController(domElement){
var data = domElement.data();
domElement.toggleClass('active');
$(data.target).toggleClass('active');
$(data.remove).removeClass('active');
}
$(controller).click(function(e){
uiController($(this));