Wednesday, March 2, 2011

Thank You Messages In Wedding Programs

HTML: aprire link in una nuova finestra o in una scheda pop up

Quando inseriamo dei link a siti esterni al nostro è opportuno che si aprano in una nuova scheda o in una finestra pop up: questo eviteràche il click sul link porti i visitatori a lasciare definitivamente le nostre pagine.
il comando HTML più semplice è il seguente:
<a href="INDIRIZZO PAGINA DA APRIRE" target="_blank" >Nome Visualizzato</a>

in red what is appropriate, just add a normal link.
If you want the contents of the link to appear in a pop-up code will be:
\u0026lt;a onclick = "window.open (this.href ,'',' resizable = no, location = no , menubar = no , scrollbars = yes , status = no , toolbar = no, fullscreen = no , width = 520, height = 500 , left = 650 , top = 30 ') return false "href =" URL to open "> Display Name \u0026lt;/ a> The
personalizzazioni possibili sono molte:
resizable : consente all'utente di ridimensionare la finestra ( resizable=yes oppure resizable=no )
location : tramite questa impostazione si decide se mostrare o no la barra degli url nella nuova finestra ( location=yes oppure location=no )
menubar : tramite questa impostazione si decide se mostrare o no la barra del menu ( menubar=yes oppure menubar=no )
scrollbars : per aggiungere le barre di scorrimento laterali ( scrollbars=yes oppure scrollbars=no )
status : the window has a status bar (status = yes or status = no )
toolbar : visuaalizzare for the browser's toolbar (toolbar = yes or toolbar = no )
fullscreen: if we open the window to full screen (fullscreen = yes or fullscreen = no )
width and height: width and height of the window in pixels ( width = 520, height = 500 )
left and top : distance from the left and from the top of the monitor ( left = 650, top = 30 )

0 comments:

Post a Comment