I have on my page a search system , a slideshow and a carousel running with js, but the carousel doesn't run :
The search begins with :
$('document').ready( function() {
$("#search_query_top")
The slideshow begins with :
$(window).load(function()
{
init_slideshow()
})
The carousel begins with :
jQuery(document).ready(function() {
$("ul.carruselhome").simplecarousel({
The problem, I think is here :
$('document').ready( function()
When I disable the line from the search system :
$('document').ready( function() ; //the carousel works...
I tried to change the ready syntax on the carousel script , but nothing happens, I want to fix that only in the carousel script .
The ('document') doesn't affect anything.