Simple selecter event not working

Simple selecter event not working

I have the following HTML:
  1.             <div class="social">
  2.                 <div data-link="#" class="icon-fb">&nbsp;</div>
  3.                 <div data-link="#" class="icon-twitter"></div>
  4.                 <div data-link="#" class="icon-linkedin"></div>
  5.                 <div data-link="#" class="icon-git"></div>
  6.                 <div data-link="#" class="icon-vimeo"></div>
  7.                 <div data-link="#" class="icon-youtube"></div>
  8.             </div>
Trying to build a quick selector so I can attach events:
  1.         jQuery( document ).ready(function() {
  2.             jQuery(".social > div[data-link]").each( function(e) {
  3.                 jQuery(e).click( function(e) {
  4.                     alert(e);
  5.                 });
  6.             });
  7.         });
But this does not work.  I am really proficient with Mootools but have had to switch to jQuery for a project.  

Please advise, thanks