I am trying to preload some images with a jQuery AJAX call, but am having real problems passing a (url) string into a function within the success function of the AJAX call (if that makes sense).
Here is my code as is stands:
//preloader for images on gallery pages
window.onload = function() {
setTimeout(function() {
var urls = ["./img/party/"]; //just one to get started
for ( var i = 0; i < urls.length; i++ ) {
$.ajax({
url: urls[i],
success: function(data,url) {
$(data).find("a:contains(.jpg)").each(function(url) {
new Image().src = url + $(this).attr("href");
});
}
});
};
}, 1000);
};
One can see my (failed) attempt at passing the url through into the .each()
call - url
ends up takes the value of increasing integers. Not sure why or what these relate to, maybe the number of jpg files?
...anyway, it should of course take the single value in my original urls array.
Thanks for any help - I always seem to get in a bit of a twist with these callbacks.
PROGESS?
So, I mucked around a bit, taking heed of comments from @ron tornambe and @PiSquared and am currently here:
//preloader for images on gallery pages
window.onload = function() {
var urls = ["./img/party/","./img/wedding/","./img/wedding/tree/"];
setTimeout(function() {
for ( var i = 0; i < urls.length; i++ ) {
$.ajax({
url: urls[i],
success: function(data) {
image_link(data,i);
function image_link(data, i) {
$(data).find("a:contains(.jpg)").each(function(){
console.log(i);
new Image().src = urls[i] + $(this).attr("href");
});
}
}
});
};
}, 1000);
};
I tried putting the image_link(data, i)
here there and everywhere (in each nested function etc.) but I get the same result: the value for i
is only ever logged as 3. I suspect that this is because all references to i
point to the same thing and by the time the asynchronous task actually gets to image_link(data, i)
the for...
loop is over and done with (and hence has a value of 3). Needless to say this gives urls[i]
as 'undefined'.
Any (more) tips how I can get round this?
I've meet the probleme recently. The trouble is coming when the filename lenght is greather than 20 characters. So the bypass is to change your filename length, but the trick is also a good one.
After more investigation the trouble is coming from ajax request: Put an eye to the html code returned by ajax:
As you can see the filename is splitted after the character 20, so the
$(data).find("a:contains(.png))
is not able to find the correct extention.But if you check the value of the
href
parameter it contents the fullname of the file.I dont know if I can to ask to ajax to return the full filename in the text area?
Hope to be clear
I've found the right test to gather all files:
I'm doing it this way:
You can also use indexValue attribute for passing multiple parameters via object:
Since the settings object is tied to that ajax call, you can simply add in the indexer as a custom property, which you can then access using
this
in the success callback:Edit: Adding in an updated JSFiddle example, as they seem to have changed how their ECHO endpoints work: https://jsfiddle.net/djujx97n/26/.
To understand how this works see the "context" field on the ajaxSettings object: http://api.jquery.com/jquery.ajax/, specifically this note:
You can't pass parameters like this - the success object maps to an anonymous function with one parameter and that's the received data. Create a function outside of the for loop which takes
(data, i)
as parameters and perform the code there:Try something like this (use this.url to get the url):
Taken from here