Sto provando a caricare un href in una finestra popup di dimensioni specifiche che si concentra anche sullo schermo.Apri collegamento in finestra popup con Javascript
Qui è la mia fonte:
<li>
<a class="sprite_stumbleupon" href="http://www.stumbleupon.com/submit?url=http://www.your_web_page_url" target="_blank" onclick="return windowpop(545, 433)"></a>
</li>
Ed ecco il mio javascript:
function windowpop(url, width, height) {
var leftPosition, topPosition;
//Allow for borders.
leftPosition = (window.screen.width/2) - ((width/2) + 10);
//Allow for title and status bars.
topPosition = (window.screen.height/2) - ((height/2) + 50);
//Open the window.
window.open(url, "Window2", "status=no,height=" + height + ",width=" + width + ",resizable=yes,left=" + leftPosition + ",top=" + topPosition + ",screenX=" + leftPosition + ",screenY=" + topPosition + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
}
Questo sembra restituire un errore 404 durante il test. Che cosa sto facendo di sbagliato?
Grazie mille.
non è ancora avvenuto il parametro 'url' alla funzione' windowpop'. –
'function windowpop (url, width, height)' La funzione si aspetta che tu restituisca un URL ma stai solo restituendo larghezza e altezza. – Mal
Questo potrebbe essere chiuso per una buona ragione, ma l'ho trovato pazzo utile. Non conoscevo nessuno di quei parametri extra su window.open. – jstaab