hi,
i built my own form-script and would like to preload a "loading"-icon which shows up when hitting the submit button.
i'm using this code:
var icon = $('<img />').attr('src', 'images/status.gif');
my question: will the image be cached + show up immidiately also when using jQuery for creating the icon's html-markup? like:
statusDiv.html("<img src='images/status.gif'> Submitting ..");
thx