I have the below code which loads the #special from my root page. This all works fine however I am concerned that I am having to load all the css/js/images etc again each time someone loads this page.
<div id="test-one"></div>
<script>
$("#test-one").load("/ #special");
</script>
Is there a way to cache this? I see that jQuery.ajax refers to cache but it doesn't look as though you can load a specific selector with jQuery.ajax?