On a test page ( http://www.thepartysource.com/index_test.php ), I am trying to incorporate shadowbox. I have successfully incorporated this into another site previously, and am doing the same thing... I'm not why in this case I am getting the error message "Shadowbox is not defined" where it is calling Shadowbox.init().
If you go to the webpage and view source, you can click the links to the css and js files for shadowbox, so I know that it is at least seeing the files. I've also tried moving these calls around (reordering the script tags) to see if another script was breaking it. But no matter where I put the shadowbox tabs, it always gives me the same error. I have included the entire head of this document. Thanks in advance.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The Party Source - Everything but the Guests!</title>
<meta name="description" content="The Party Source, Bellevue, KY, Everything But The Guests.">
<meta name="keywords" content="beer,wine,spirits,party,source,party supplies,cigars,specialty foods,party source,partysource,eq,classes,microbrews,imports,liquor,liqueur,premium cigars,discount cigars,cigar accessories,gourmet food,ballons, cooking classes,wine tasting">
<link media="all" rel="stylesheet" type="text/css" href="css/all-2.css" />
<!--[if lt IE 8]><link rel="stylesheet" type="text/css" href="css/ie.css" /><![endif]-->
<link media="all" rel="stylesheet" type="text/css" href="express/css/typography.css" />
<script type="text/javascript" src="javascripts/jquery.js"></script>
<script type="text/javascript" src="javascripts/ie-hover-ns-pack.js"></script>
<script type="text/javascript" src="javascripts/tabs.js"></script>
<script type="text/javascript" src="javascripts/clear-default-text.js"></script>
<script type="text/javascript" src="javascripts/ccPopUp.js"></script>
<script type="text/javascript" src="javascripts/jquery.main.js"></script>
<link media="all" rel="stylesheet" type="text/css" href="includes/shadowbox/shadowbox.css" />
<script type="text/javascript" href="includes/shadowbox/shadowbox.js"></script>
<script type="text/javascript">
$(document).ready(function(){
Shadowbox.init({
handleOversize: "drag",
modal: true
});
});
</script>
<script type="text/javascript" src="javascripts/dropSearch.js"></script>
</head>
EDIT
I just realized that when I moved the dropSearch.js script tag below the shadowbox.js script tag, the drop search stopped working. I had to move it above it to use it. I'll redownload shadowbox and see if that helps...
RE-EDIT
No, that wasn't the issue, evidently.
CLOSED
I gave up. I think there is just something in the other scripts that is breaking it, and do not believe anyone can answer this. Thanks anyway.
scripttag, but not inside a $(document).ready, like you've got it. Could this be the issue? shadowbox-js.com/usage.html – motoxer4533 Nov 10 '11 at 20:06