Das ist ein kleines Tutorial wie man ein Pop Up erstellt.
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
|
[font=Courier New]<script type="text/JavaScript">
<!--
function popupPage(url) {
window.open(url, "titel", "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes, width=800, height=600");
}
//-->
</script>
<a href="#" onClick="popupPage('bild.jpg')">bild1</a> [/font]
|