Home › Forums › JavaScript › Change the Iframe SRC Dynamically Without Triggering the Loading Spinner › Re: Change the Iframe SRC Dynamically Without Triggering the Loading Spinner
July 13, 2012 at 10:40 pm
#106077
Participant
Almost solved: http://jsfiddle.net/tovic/kw7LD/22/
function insert() {
$('#container').html('');
$('#container iframe').one("load", function() {
$(this).attr('src', 'something.html');
});
}