[jQuery] What am I doing wrong?
I can't seem to get this to work for a client. I'm not a genious at
jQuery, but I think this is supposed to work. What am I doing wrong?
<code>
<html>
<head>
<script type="text/javascript" src="some/path/to/js/
jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="some/path/to/js/shadowbox/src/
adapter/shadowbox-jquery.js"></script>
<script type="text/javascript" src=some/path/to/js/shadowbox/src/
shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.loadSkin('classic', 'some/path/to/js/shadowbox/src/skin');
Shadowbox.loadLanguage('en', 'some/path/to/js/shadowbox/src/lang');
Shadowbox.loadPlayer(['flv', 'html', 'iframe', 'img', 'qt', 'swf',
'wmp'], 'some/path/to/js/shadowbox/src/player');
$(document).ready(function(){
Shadowbox.init();
});
</script>
</head>
<body>
<a rel="shadowbox;height=700px;width=300px" class="option"
href="http://www.someotherpage.com/other/page">jQuery</a>
</body>
<html>
</code>