please tell me why I can't get the bxplayer to work. I've tried the simplest example and still nothing.
I used the js and css directly from the site.
<script src="http://bxslider.com/lib/jquery.bxslider.js"></script>
<link href="http://bxslider.com/lib/jquery.bxslider.css" rel="stylesheet" />
And this is the html
<ul class="bxslider">
<li><img src="http://bxslider.com/images/730_200/tree_root.jpg" title="Funky roots" /></li>
<li><img src="http://bxslider.com/images/730_200/hill_road.jpg" title="The long and winding road" /></li>
<li><img src="http://bxslider.com/images/730_200/trees.jpg" title="Happy trees" /></li>
<script>$('.bxslider').bxSlider({ mode: 'fade', captions: true});</script>
The website is here
Figured it out.
I was putting the bxslider calls before the
<?php wp_head(); ?>
Once I moved them after, everything started working.
You have to add a Jquery.js too, and you will have something like this in your <head>
:
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://bxslider.com/lib/jquery.bxslider.js"></script>
<link href="http://bxslider.com/lib/jquery.bxslider.css" rel="stylesheet" />
This is a example: