jqueryを使用してhtmlページ(b.htmlなど)をhtmlページ(a.html)に含めています。b.htmlページには6つのリンクが含まれています..a.htmlのphpコンテンツの下に表示したい、しかし、phpコンテンツがロードされる前にb.htmlが表示されます.phpの下にhtmlページを取得するにはどうすればよいですか??
<script>(a.html)
jQuery(document).ready(function(){
$("#includedContent").load("/templates/default/property/tab.html");
});
</script>
in html page (a.html)
<div id="includedContent"></div>