Skip to content

Instantly share code, notes, and snippets.

@torounit
Created January 20, 2016 16:41
Show Gist options
  • Save torounit/60dd8b50ce01a19e5092 to your computer and use it in GitHub Desktop.
Save torounit/60dd8b50ce01a19e5092 to your computer and use it in GitHub Desktop.
(function($){
$(function(){
var $target = $('.target');
$('.event-target').hover(
function(){
$target.addClass('hoge');
},
function(){
$target.removeClass('hoge');
}
);
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment