Google が以下のようなコンテンツの yummy-sundae.html をクロールします。
<html>
<head>
<title>絶品!アイスクリームサンデー</title>
<script src="jquery.js"></script>
</head>
<body>
おいしいアイスクリームサンデーのページです。
<div id="content"></div>
<script type="text/javascript">
$(document).ready(function() {
$.post('hot-fudge-info.html', function(data)
{$('#content').html(data);});
});
</script>
</body>
</html>