Skip to content

Instantly share code, notes, and snippets.

@steppefox
Created September 3, 2013 05:39
Show Gist options
  • Save steppefox/6420064 to your computer and use it in GitHub Desktop.
Save steppefox/6420064 to your computer and use it in GitHub Desktop.
dinamic loading images in js
//ДИНАМИЧЕСКА ЗАГРУЗКА ИЗОБРАЖЕНИЙ, чаще всего применяется для ajax слайдеров
var image_name = '/path_to_image/';
var new_image = new Image();
new_image.onload = function(){
}
new_image.src=image_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment