jquery load

jquery load

Hi,

I am using jQuery load in order to avoid appearing of the links in the source code of the page.
It is working fine. Also I would like to add some content to the page loaded and that should be visible in the page and also appear in the source code of the page. And for this what I did is added the content in the div tags as follows:

<div id = "ID">
<?php echo 'text to appear in the jquery loaded page and which should be appeared in the source code of the page'; ?>
</div>
<script type="text/javascript">
    $(document).ready(function() {
         $("#ID").load('page');
        });
</script>  
In the place of <div id = "ID">, the page is loaded. and the text between the div tags is appearing in the source code of the page, but not in the page. How should I make it visible in the page.

Any help is much appreciated.
Thanks