I'm trying to access 2 external CSS files and one JS(jQuery) file. I'm adding them to my site like this:
<link rel="stylesheet" href="http://www.externalsite.com/css/style.css" type="text/css" />
and
<script src="http://www.externalsite.com/js/jquery.easing.1.3.js"></script>
<script src="http://www.externalsite.com/js/default.js"></script>
Within default.js, there is a bit of jQuery that control the drop down of my menu. The drop downs don't appear. The HTML code is correct when I view the source.
Am I linking tot he files correctly? Any ideas why I'm not seeing my drop downs?
EDIT:
I'm linking to a HTTP site from a HTTPS site, if that matters.
EDIT 2:
JSFiddle added: http://jsfiddle.net/tvZUG/