2017-08-19 4 views

Répondre

0

L'idée générale pourrait ressembler à ceci:

javascript:(function() { 
    var eltIF = document.createElement("iframe"); 
    eltIF.setAttribute("src", "http://anysitetogo.com"); 
    document.body.appendChild(eltIF); 
    eltIF.scrollIntoView(); 
})();