I work with Foundation 4. I tried to include an orbit slide on my site, but I canโt get it working.
So, I followed the steps in the Foundation documentation . I have included all the necessary scripts
<script type="text/javascript" src="js/vendor/custom.modernizr.js"></script> <script type="text/javascript" src="js/foundation.min.js"></script> <script type="text/javascript" src="js/foundation/foundation.orbit.js"></script> <script type="text/javascript" src="js/jquery.js"></script> <script> $(document).foundation(); </script>
Then I tried to add a simple slide show
<ul data-orbit> <li> Test1 </li> <li> Test2 </li> <li> Test3 </li> </ul>
But instead of creating a slide show, all I get is an unordered list. I checked three times to make sure I didn't miss anything. Here is an example of what I get.
source share