Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<a href="javascript:window.open('popup.html','Popup', 'width=400,height=300');"><img src="DeinBild.jpg"> </a>
Du weißt schon, dass PHP auf Serverseite läuft?Bevorzugt ohne PHP.
Sorry, aber nein. So macht man Usern ohne Javascript und schlussendlich sich selbst das Leben schwer.HTML:<a href="javascript:window.open('popup.html','Popup', 'width=400,height=300');"><img src="DeinBild.jpg"> </a>
<a href="popup.html" target="blank" onclick="window.open(this.href,'Popup', 'width=400,height=300'); return false;">
<img src="DeinBild.jpg" alt="" />
</a>
Gleicher Effekt, aber JS-safe:HTML:<a href="popup.html" target="blank" onclick="window.open(this.href,'Popup', 'width=400,height=300'); return false;"> <img src="DeinBild.jpg" alt="" /> </a>