Загрузить страницу и загрузить де-фреймы, когда пользователь нажимает на вашу ссылку? Хорошо, вставьте HTML-код iframe, когда пользователь нажмет. Я думаю, что это работает ... Я помню, я сделал что-то вроде этого
несколько месяцев назад.
<a href="#" onclick="discothequeReload();" style="text-decoration: none" class="">Nouvelle recherche</a>
<div id="discotheque">
<!-- without the ifram -->
</div>
<script>
function discothequeReload() {
$("#discotheque").html('<iframe id="discothequeReload" frameborder="0" src="http://www.google.com"></iframe>');
}
</script>