Romja,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script>
$(function () {
var img = $('.background img')
img.on('load', function () {
alert('оба-на');
}).attr({
src: 'http://javascript.ru/forum/images/ca_serenity/misc/logo.gif'
});
window.setTimeout(function () {
// img.attr({src: 'http://javascript.ru/forum/images/ca_serenity/misc/logo.gif'}) на этот код несработает load в Google Chrome
img.attr({src: 'http://javascript.ru/forum/images/ca_serenity/misc/logo.gif?'+ Math.random()})
}, 2000)
})
</script>
</head>
<body>
<div class="background">
<div class="image-wide">
<img id="wide" src="">
</div>
</div>
</body>
</html>