Ragazzi potete risolvere questo esercizio che non so dove mettere mano!!!

Risolverlo tramite Jquery:
modificare (il meno possibile) il documento HTML in modo da poter attivare, cliccando sull’elemento <a> corrispondente, il caricamento asincrono delle URL elencate nel documento: ogni documento va visualizzato nella posizione in cui compare l’elemento <a> stesso, senza cancellare il link stesso.


<html>
<body>
<div>
<a href="http://www.abc/index1.htm">link</a> <a href="http://www.xyz/index2.htm">link</a>
<a href="http://www.abc/index3.htm">link</a> <a href="http://www.xyz/index4.htm">link</a>
<a href="http://www.abc/index5.htm">link</a> <a href="http://www.xyz/index6.htm">link</a>
<a href="http://www.abc/index7.htm">link</a> <a href="http://www.xyz/index8.htm">link</a>
</div>
<div>
<a href="http://www.xyz/page1.htm">link</a> <a href="http://www.abc/page2.htm">link</a>
<a href="http://www.xyz/page3.htm">link</a> <a href="http://www.abc/page4.htm">link</a>
<a href="http://www.xyz/page5.htm">link</a> <a href="http://www.abc/page6.htm">link</a>
<a href="http://www.xyz/page7.htm">link</a> <a href="http://www.abc/page8.htm">link</a>
</div>
</body>
</html>