I have been trying to work on such a script that when i click on the link then in certain div the whole content of the link's page get load i tried the following code but its not working fine and always blink when i click on the link. Kindly let me know if there's any issue and how can i accomplish it wither way:
Live example: http://caremerge.us/ajax/waleed_rai_2/index_FAIZAN.html
<script>
$("#aa").click(function(){
// load by id on click
$("#response").delay(10000).load("aa.html");
});
</script>
<div id="main-body">
<div class="span-19 last" id="response">
</div>
</div>