Advertisement
Advertisement
| 09.20.2008 at 07:01AM PDT, ID: 23748218 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script src="http://www.mysite.com/media/js/jquery-1.2.6.js" type="text/javascript"></script>
<script type="text/javascript" src="http://www.mysite.com/media/js/sb/shadowbox-jquery.js"></script>
<script type="text/javascript" src="http://www.mysite.com/media/js/sb/shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.loadSkin('classic', 'http://www.mysite.com/media/js/sb/src/skin');
Shadowbox.loadLanguage('en', 'http://www.mysite.com/media/js/sb/src/lang');
Shadowbox.loadPlayer(['iframe', 'html', 'swf','img', 'flv'], 'http://www.mysite.com/media/js/sb/src/player');
$(window).load(function(){
Shadowbox.init({
handleException: report,
handleOversize: 'drag',
displayNav: false,
handleUnsupported: 'remove',
overlayOpacity: 0.5
});
});
function report(e){
for(i in e)
alert(i + " " + e[i]
);
}
</script>
</head>
<body>
<p>Before the Shadowbox script.</p>
<!--<script type="text/javascript">
Shadowbox.open({
player: 'html',
title: 'Welcome',
content: '<div id="welcome-msg">Welcome to my website!</div>',
height: 350,
width: 350
});
</script>
-->
<script type="text/javascript">
Shadowbox.open({
player: 'img',
title: 'Welcome',
content: 'http://www.mysite.com/media/img/NKBAlogo_Member_BlkLowRes2.jpg',
height: 350,
width: 350
});
</script>
<p>After the Shadowbox script.</p>
</body>
</html>
|