I have the following jQuery code:
$('#foo').click(function () {
var loading = $('<img id="loading" src="images/loader.gif" alt="loading" />');
$('#stars').prepend(loading);
alert('WAIT');
});
$('#bar').click(function () {
$('#stars').empty();
});
When first clicking #foo the image is being shown in my browser window. After clicking #bar and then #foo again the image is not being shown.
I use Chrome and also use the Inspect Element tool and I can see in the code that the img tag was added in #stars when clicking for the second time #foo. But no img is being shown in the browser window.
Any ideas why? Should I use the live() function perhaps, but how?