Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
2k views

Unfailing Javascript Image Preview

I have the following code that presents the user with a preview of the image they're trying to upload and works really well in FF: var img = document.createElement('img'); img.src = ...
7
votes
2answers
1k views

jQuery image preload/cache halting browser

In short, I have a very large photo gallery and I'm trying to cache as many of the thumbnail images as I can when the first page loads. There could be 1000+ thumbnails. First question -- is it ...
5
votes
3answers
537 views

Javascript blocking until image preload complete?

I am using javascript to preload several images with the following code: // do the following for each image where 'this' is the path (new Image()).src = this; This works fine - in firebug I can see ...
5
votes
2answers
368 views

jQuery - how to get/read css property on :hover pseudo class

I am working on an image preloader that will preload all images on a page. My approach is as follows: onDomReady, loop through $("*") //go thru all elements when the DOM is ready if ...
5
votes
6answers
2k views

How to Preload Images without Javascript?

In one of My Layout there are some large images (come from XML) which shown when I mouse hover on some some of the link, but when the Page loads and when i rollover It takes time to Load that Image. ...
4
votes
2answers
342 views

how to preload large size image?

i have certain links, on mouse over of those links I am changing <div> background image jQuery I have used is- function imgchange() { $('.smenu li').mouseover( function(){ ...
4
votes
5answers
647 views

Simulate loading on localhost

I have a site which uses AJAX and preloaders. Now I would like to see the impact of these preoloaders before deploying the site online. The "problem" is that localhost doesn't have loading time and ...
4
votes
5answers
5k views

The definitive best way to preload images using JavaScript/jQuery?

I'm fully aware that this question has been asked and answered everywhere, both on SO and off. However, every time there seems to be a different answer, e.g. this, this and that. I don't care whether ...
3
votes
1answer
147 views

How would I (or should I) extend Modernizr.load() to preload images?

The idea is that the page /something/index.html is loaded. But, before I show it, its dependencies (css and images in this case) are preloaded. Modernizr.load({ load: ['/something/styles.css', ...
3
votes
4answers
633 views

Wait for images to load and then execute all other code

OK, I'm losing my mind over this. I did read here at SO and google about it, I even have the preloader set (found here on SO), but none of the plugins/code I found helped me. What I want to do is: ...
3
votes
3answers
250 views

BG Image preloader in JQuery

I have an array of images var photos = ["images/bg01.jpg", "images/bg02.jpg", "images/bg03.jpg"]; I am cycling through this array and making them the background of a div based on a interval ...
3
votes
3answers
11k views

Preload images for jQuery Cycle Plugin

I’m quite new to jquery and trying to figure out how to preload images for the jQuery Cycle Plugin. I have 5+ large size images and I need those to be preloaded before starting the slideshow with ...
2
votes
1answer
259 views

How to load images intelligently using CSS/jQuery?

I have a thumbs div (i'm only showing four thumbs for the sake of brevity): <div id="thumbs"> <img src="graphics/thumbs/01.jpg" width="190" height="190" class="thumb objects" id="project01" ...
2
votes
1answer
286 views

Getting size of javascript preloaded image

I'm trying to preload a number of images generated on the server to a small website. The preloading is done using setWindowTimeout and uses an Image object, sets the onload callback and then applies ...
2
votes
3answers
422 views

preload images using jQuery

I got this snippet of code following a tutorial comment (by James) on Nettuts and I would like to implement it. The tutorial method of preloading images is long winded but I liked James' shortened ...
2
votes
1answer
100 views

Why does this attempt at preloading images with jQuery not work?

Current I have this code: var imgCount = 36; var container = $('#3D-spin'); var loaded = 0; function onLoad() { alert(loaded); loaded++; if(loaded >= imgCount) { ...
2
votes
3answers
150 views

Detect if objects are loaded [Javascript]

I was wondering, is there a way to detect if a certain image / div is loaded? For example when i am loading two heavy images and showing a loading sign at the two places the images will later occupy, ...
2
votes
1answer
135 views

Preload Images with javascript

Here is my preload script: <script type="text/javascript"> Image_1 = new Image(1,1); Image_1.src = "images/sprites.png"; </script> And it works fine. I can see in the headers the image ...
2
votes
3answers
249 views

Jquery Best Case Scenario

I am loading a bunch of images for a GUI which will pick attributes for my clients product. Is it best to pre-load all the images at the start (which I'm guessing would take some time) and then have ...
1
vote
2answers
67 views

Backbone.js, Underscore.js : template images preloading

I'm currently finishing a huge Backbone.js application with JQuery, RequireJS and Underscore. There are many images in my underscore template (lots of .png) and it's a little bit long to append() || ...
1
vote
1answer
49 views

HTML5 Video Playback - image preload

I am using video tags and jQuery to display a HTML5 video playback. How can I show an image while the video is still loading for displaying? I would use jQuery for this.. Thanks in advance! PD: ...
1
vote
6answers
155 views

preloading background image on homepage

I have a homepage that contains a huge amount of php code to populate the divs (including newsletter sign up with validation, content from a mysql database and various static images). The whole page ...
1
vote
4answers
137 views

Javascript preload images for css background-image change

I am developing a website which requires the background image of a div to change on hover of a link. The way it works is by: <a href="index.php" title="Home "> <li id="current"> ...
1
vote
1answer
42 views

Image Preloading problem with jquery

here i am giving the code to preload image by jquery. var _images = ['/images/ajax-loader.gif']; $.each(_images, function (e) { $(new Image()).load(function () { ...
1
vote
3answers
178 views

Preloading content with images with jQuery

I am using .load() in jQuery to load in html content, but in this content there are 3/4 images embedded. The success event only fires on .load() when all the html is loaded in and not actually the ...
1
vote
3answers
35 views

A Question About Image Files

I am writing an PHP script to upload image files to the server and I have a few questions? Is there a way to decrease the size of images in terms of kilobytes? When I am using those files what is ...
1
vote
3answers
204 views

What can I do to get Mozilla Firefox to preload the eventual image result?

I am attempting to preload images using JavaScript. I have declared an array as follows with image links from different places: var imageArray = new Array(); imageArray[0] = new Image(); ...
1
vote
0answers
154 views

Disable “Loading…” mode while preoading images in Opera

There is crossdomain image, which is loaded for 30 seconds (its 1x1 gif, but server returns if after 30s), via image preloading. window.onload = function () { var img = new Image(); ...
1
vote
1answer
64 views

Command the preloader to track the progress of the download in ActionScript 3

How can I command the pre-loader to track the progress of the download? public function loadImage(filename:String):void { // show the preloader preloader.visible = ...
1
vote
1answer
447 views

preload an array of images with jquery

I am using jQuery to build an array of images from a php array. I want to loop through these images, preloading them while displaying a little loading gif until all of the images are loaded. At the ...
1
vote
2answers
456 views

Preloading images using jQuery

I know this is a hot topic and I know there have been previous questions with identical titles, but I tried everything and something's just not working right. For some reason, my Firefox will not ...
1
vote
3answers
110 views

Don't know how to make script with preloaded images

Can someone look over this and tell me what I have to do to get the images to show up? <head> <SCRIPT LANGUAGE="JavaScript"> <!-- //Begin function ...
1
vote
1answer
79 views

Image preloading

I'm trying to preload my images but it's not working. in my main stylesheet I created #preload and then in my html I created a preload div. In the css I did the background method to try to preload ...
1
vote
2answers
812 views

Image preloading isn't working for images in FireFox

I'm dynamically switching background images. Naturally, they need to be preloaded to display promptly. I am preloading them, am able to following in FireBug as the images load. When the background ...
1
vote
1answer
424 views

JQuery Flickr API

I am writing a script using jQuery and Flickr REST API. following the the pseudo algo 1) Hit Flickr API and get a list of photos using $.getJSON nad create li list elements: create_gallery: ...
1
vote
1answer
2k views

Asynchronous loading images with JavaScript

Is there a method for showing a loading image for dynamic images that are generated using Flickr? I have come across a way to do it as shown on the Wacom Community site but I have not been able to get ...
0
votes
0answers
14 views

adding callback after preload completes (Filament Group jquery Plugin)

can someone please advise? I am building a mobile web app with a few heavy images that, for performance purposes i'm preloading on the splash page. I decided to use Filament Groups preloader plugin ...
0
votes
2answers
75 views

Pre Load images to display latter on click event jquery

I have a web page where lots of images called from server using image scr attribute. I have created a function like which is triggered by td click. function GoToStep(stepNo) { var imgSrc = ...
0
votes
1answer
72 views

preload images off screen - Android browser

Is there a way to preload ~3 images that are currently off screen in the android browser. Currently I'm using an iframe to allow for horizontal scrolling of a banner of images, but when the user ...
0
votes
2answers
142 views

Android: Gallery with sliding skips images and slow loading

Hello guys i am new to android so be gentle with me :), I have gallery i need to load images i have lot's of them, the performance on image loading i have solved by using AsyncTask. Now i have the ...
0
votes
0answers
94 views

Preloading images in NextGen gallery WP plugin with jQuery

how would I pass an array of images of the current NextGen gallery (WP plugin) to a javascript preloading function like the following one? function preload(images) { if (document.images) { ...
0
votes
0answers
39 views

How to display preloader while uploading file in PHP-ZEND to amazon s3

How to display preloader while uploading file in PHP-ZEND to amazon s3 I have code to upload file to amazon s3 $s3 = new Zend_Service_Amazon_S3(); $s3->putObject($objectname, ...
0
votes
2answers
40 views

How to preload image form array in array?

I have problem with preloading images. for(y=0;slide_image.lenght;y++){ for(x=0;slide_image[y].lenght;x++){ var preload_image=new Image(); preload_image.src=slide_image[y][x];} } ...
0
votes
3answers
221 views

jQuery preload images from list

I want to preload rollover images in jQuery but the list of images is inside list of like this: <li><a href="/images/1.jpg"></a></li> <li><a ...
0
votes
1answer
58 views

Add an Image pre-loader into a JS function

I have this JS function, which will call the next image: function showNextManifest() { var currentManifest = jQuery('#selectedManifestId').val(); jQuery.ajax({ ...
0
votes
1answer
50 views

Rails 3 - paperclip with perloader

I use for upload my images Paperclip. I would like to ask you, if exist any gem or plugin for showing the preloader while the image is uploading (something like "56% loaded").
0
votes
0answers
81 views

how to preload images in pesudo classes(hover, active) for webkit engine browser

In webkit engine (Chrome and Safari), I cannot preload the images which is called in :hover and :active pesudo classes. The css is written in the following way, .w-btn-green { cursor: pointer; ...
0
votes
2answers
57 views

Is there a way of “controlled” preloading of images (maybe with help of jQuery)?

For a sort of slideshow I'm trying to implement a clever image pre-loader, which should work as following: On load of slideshow first image is shown and images start loading in background in order ...
0
votes
1answer
35 views

Preview image isn't always reloaded using JQuery and the AJAX Upload jQuery plugin

I have a site where I can upload an image, and i am using a preview system where i show the selected image. The problem is that the image SOMETIMES is loaded to the preview div, but other times it ...
0
votes
1answer
99 views

Jquery Image Preload get image height

I am using the image preload plugin from this page. http://www.farinspace.com/jquery-image-preload-plugin/ . I am trying to get the height of the image with the code below.However this alerts a bunch ...

1 2