Apologies if this is really basic stuff, and it probably is!

I'm using the
jmapping plugin and it's all working great - when you click on a location link in the side bar the map pans to the location. However what I also want to happen when I click the location link is to load more information about the location onto the page.
The idea is to load the div from infodivs.aspx which has an id that matches the href of the link that was clicked. I can make the whole page load without issue but I can't get my head around the syntax for identifying the href of the clicked link and then inserting that into the load statement as a div id.
I've tried this.href but if that's actually the right approach, I haven't phrased it right so far. Any help gratefully received, I've hit a bit of a mental block!
Here's the code:
- $("a.map-link").click(function () {
- $('div#moreinfo').empty().load('infodivs.aspx what goes here?');
- });