Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > Javascript / Java Applets

Javascript / Java Applets Are you a JavaScript guy? Do you need help with JavaScript? This is the place to talk about anything related to Java.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-28-2009, 06:29 AM
eoLithic eoLithic is offline
Junior Member
 
Join Date: Feb 2009
Posts: 3
Default opening instantly images stored in my hosting

How do I make script to pre-load the images stored in my hosting? In this way the visitors will be able to open instantly the full sized image when clicked.
Reply With Quote
  #2  
Old 08-28-2009, 06:59 AM
hood's Avatar
hood hood is offline
Senior Member
 
Join Date: Jan 2009
Posts: 107
Default Re: opening instantly images stored in my hosting

The easiest way is to load and remove them when visitors open your page so the images will be stored in the browser cache. Here's how it is implemented. Load the images in a 'div' tag and remove them with JavaScript when page is loaded.
Part with the div:
HTML Code:
<div id='remove'>
<img src='imge1.jpg' alt='' />
<img src='imge2.jpg' alt='' />
</div>
Part with the javascript:
HTML Code:
window.onload = removeIMG;
function removeIMG(){
document.getElementByID("remove").style.display = "none";
}
Reply With Quote
  #3  
Old 02-23-2010, 05:23 PM
housefull housefull is offline
Junior Member
 
Join Date: Feb 2010
Posts: 1
Default Re: opening instantly images stored in my hosting

Default Re: please check my site
Thanks for the suggestion, I wish it had worked.
__________________
Watch The Crazies Online Free
Reply With Quote
Reply

Tags
hosting, images, instantly, opening, stored

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 03:31 PM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.