JSFiddle - React, Tailwind, and code Playground

HTML

<a href="http://javascript.ru/forum/jquery/27944-assinkhronnaya-podgruzka-po-ssylke.html" id="link">Ссылка 1</a><br>
<a href="http://yandex.ru" id="link">Ссылка 2</a><br>
<div class="content">Нажми на ссылку</div>

CSS

.content { width: 400px; height: 300px; border: 1px solid #555555; margin: 20px; }

JavaScript

$('#link').live('click',function(){
    $('.content').text('Загрузка...');
    $.post($(this).attr('href'),function(data){  
        $('.content').html(data);
    });
    return false;
});