I need to include two external CSS files and one jQuery file in my website. This is how I am adding them:
<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>
In the default.js file, there is some jQuery code that should control the drop down menu on my site. However, the drop downs are not appearing even though the HTML code seems correct.
Am I linking to the files properly? Any suggestions as to why the drop downs are not working?
EDIT:
I am linking from an HTTP site to an HTTPS site, could this be causing the issue?
EDIT 2:
Here is the JSFiddle link: http://jsfiddle.net/tvZUG/