Dat is een popup schermpje... die kan je heel simpel met javascript maken
Dit is een simpel voorbeeldje [uit te breiden naar wens]:
code:
1
2
3
4
5
6
7
8
9
10
| <script type="text/javascript">
<!--
function openWinClick( location, width, height )
{
popup = window.open( location, 'popup', 'menubar=no,resizable=no,scrollbars=no,status=0,width='+width+',height='+height);
if ( popup == null )
window.location = location;
}
//-->
</script> |
En zo roep je em aan:
code:
1
| <a href="javascript:openWinClick('url v/d page','breedte in pixels','hoogte in pixels');">bla</a> |
Succes ermee!
/edit: typo in aanroep code