While this JQuery plugin works perfectly in Internet Explorer and Firefox, it seems to be malfunctioning in Chrome. The plugin is not being recognized at all by Chrome, and the captions are appearing below the image instead of on top with a sliding effect.
http://tympanus.net/codrops/2009/11/23/jcapslide-a-jquery-image-caption-plugin/
If you have any ideas as to why this might not work in Chrome, your thoughts would be greatly appreciated!
Here is the code snippet being used:
<div> ... (code continues) ... </div>
<hr />
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script src="jquery.capSlide.js" type="text/javascript"></script>
<script type="text/javascript"> ... (script continues) ... </script>
</body>
Here is the JavaScript in use:
(function($) {
$.fn.capslide = function(options) { ... (JavaScript function definition) ... };
})(jQuery);
And here is the associated CSS:
<style> ... (CSS styles continue) ... </style>