Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Change the Iframe SRC Dynamically Without Triggering the Loading Spinner Re: Change the Iframe SRC Dynamically Without Triggering the Loading Spinner

#106077
Taufik Nurrohman
Participant

Almost solved: http://jsfiddle.net/tovic/kw7LD/22/

function insert() {
$('#container').html('');
$('#container iframe').one("load", function() {
$(this).attr('src', 'something.html');
});
}