[jQuery] Load specific id on click
I have a page with an archive of all newsletters:
http://ischagast.nl/janhekmanschool/nieuwsbrief/archief/
What I want is that when clicking a month the results of that month
appear under the months just like this site:
http://loweblog.com/archives/
I thought building that with jquery would be simple, something like
this:
$('#content_main div.weblog_archive li a').click(function() {
$('div.article').load(this.href);
return false
});
This works good but I only want to load the div.article and thats
something I could not get to work.
I thought maybe something like this could work but it does not:
.load(this.href + "div.article");
What works?