- Home
- Categorie
- Digital Marketing
- Grafica, Visual Design & UX
- popup con variabili
-
popup con variabili
Ciao, vorrei aprire delle pagine usanndo windows.open, ho scritto l'action che riporto sotto ma non funziona.
Sapreste dirmi dove sbaglio?
var height=580;
var width=650;
var top=50;
var left=160;
map.chiese.civita.onRelease=function() {
getURL("javascript:window.open("chiese.asp?id=1", "", "height=" + height + ", width=" + width + ", top=+ top +, left=+ left +");;void(0)");
}
map.chiese.convicinio.onRelease=function() {
getURL("javascript:window.open("chiese.asp?id=2", "", "height=" + height + ", width=" + width + ", top=+ top +, left=+ left +");;void(0)");
}
GRAZIE