Week 11 Assignment 1

by Larry Adams

HTML

<a href="http://www.extension.harvard.edu">This is a link</a>

JavaScript

// Apply the class info_link to any link you want to get the info from.

$(function(){
  $('.info_link').click(function(){
    alert($(this).attr('href'));
    // or alert($(this).hash();
  });
});