Im using jQuery cycle and jcarousel plugins.
Theese plugins are working fine in localhost, but now I host my example in a free host service just to do some tests, and my jQuery plugins dont work in internet explorer. But they work in google chrome. Im using IE 10.
Do you know why this can be happening?
Im have my scripts import in my scripts.php file, and then I include this file in my page :
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/cycle.js"></script>
<script type="text/javascript" src="scripts/cycle_function.js"></script>
<script type="text/javascript" src="scripts/shadowbox/shadowbox.js"></script>
<script type="text/javascript" src="scripts/shadobox_function.js"></script>
<script type="text/javascript" src="scripts/jcarousel.js"></script>
<script type="text/javascript" src="scripts/jcarousel_function.js"></script>
My cycle function:
$(function(){
$("#last_news ul").cycle({
fx:'fade',
speed: 1500,
timeout: 5000,
pager: '#pager',
})
})
My jCarousel function:
$(function() {
$("#carosel").jCarouselLite({
vertical: 'true',
auto: 5000,
speed: 2000,
visible: 4
});
});