Displaying The Popup Box Generated By Greybox On Page Load(onload)
I have the following html code : Launch It launches a popup generated with GREYBOX when
Solution 1:
<body>
<script>
AJS.AEV(window, 'load', function() {
GB_show("Hello world", "http://google.com");
});
</script>
The AJS library used by greybox offers it's own pageload call
Post a Comment for "Displaying The Popup Box Generated By Greybox On Page Load(onload)"