// $(document).ready(function(){ // $('.communityPic').hover(function(){ // let view = '#' + $(this).attr('id') + 'view'; // $(document).on('mousemove', function(e){ // $(view).css({ // left: e.pageX + 20, // top: e.pageY // }); // }); // $(view).show(); // }, function() { // let view = '#' + $(this).attr('id') + 'view'; // $(view).hide(); // $(document).off('mousemove'); // }); // });