у меня всё отображает
<!--——————— ajax ———————-->
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
$('#ajax_div').click(function(){
$(this).load('get_card.php');
})
});
</script>
<!--——————— /ajax ———————-->
<div id="ajax_div" style="width:300; height:300px; background-color:olive">
</div>