I need source code to implement web prefetching.. can anyone help me?

some more information may be neccessary to give accurate answers
what do you need to prefetch
random code sample images/pdf/etc

</body>
<script type="text/javascript">
//<![CDATA[
<!-- 
image1 = new Image();
image1.src = "http://mysite.com/image1.jpg";
image2 = new Image();
image2.src = "http://mysite.com/image2.jpg";
image3 = new Image();
image3.src = "http://mysite.com/image3.jpg";
//-->
//]]>
</script>
</html>

do not have to be images any file placed as src will be fetched,the script doews not display anything, just fetches it

between </body> and </html> means the page will fully display before the items are fetched, apparent faster loading

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.