I have 2 separate HTML pages. What I'm trying to do is to pull a div from the second HTML page to look like the image on the right. When I click on todays news it should display below and not like a hyperlink.
$(document).ready(function() {
  $('href link of current').click(function() {
    $("div of another html").load('today.html h2 h3');
  });
});
});

 
    