history.pushState(null, null, '#myhash')
$('.js-iframe-load').each(function(i){
setTimeout(function(){
$(this).attr('src', $(this).attr('data-src-frame') );
}, 2000 * i);
});
jQuery('.js-iframe-load').each(function(){
setTimeout((function(){ $(this).attr('src', $(this).attr('data-src-frame') ); }).bind(this) , 2000)
})