- Home
- Categorie
- Coding e Sistemistica
- Javascript & Framework
- Script per sfondo cliccabile
-
Script per sfondo cliccabile
Salve a tutti,
spero di aver azzeccato la giusta sezione del forum.
Ho trovato e "montato" un javascript che mi permette di inserire uno sfondo cliccabile al mio sito, da inserire subito prima della chiusura di body. Quello che vorrei fare, e che non riesco a capire, è fare in modo che il link venga aperto in una nuova finestra.
Lo script dell'event 'onclick' è il seguente (non mi fa incollare l'intero codice):function getKeyCode(e){
var targ;
if (!e) var e = window.event;
if (e.target) targ = e.target;
else if (e.srcElement) targ = e.srcElement;
if (targ.nodeType == 3) targ = targ.parentNode;if (targ.tagName == 'BODY' || targ.tagName == 'body') {
window.location='yyy';
}
-
RISOLTO!!
scrivo il codice, magari può servire a qualcunofunction getKeyCode(e){
var targ; if (!e) var e = window.open; if (e.target) targ = e.target; else if (e.srcElement) targ = e.srcElement; if (targ.nodeType == 3) targ = targ.parentNode; if (targ.tagName == 'BODY' || targ.tagName == 'body') { window.location=(apri('xxx'),'open_window',
'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=640, height=480, left=0, top=0');
window.location='xxx';
}