I done website, on a hard disc all it’s ok, but if I sent my website to server jqDock dosen’t load… In my validators I get communit : (‘#menu’).jqDock is not a function…
Where can be problem? I load jqDock library after jQuery …
code..
jQuery(document).ready(function($){
// set up the options to be used for jqDock...
var dockOptions =
{ align: 'left' // vertical menu, with expansion LEFT/RIGHT from the center
, inactivity: 4000 // set inactivity timeout to 4 seconds
, size: 222
, distance: 40
};
// ...and apply...
$('#menu').jqDock(dockOptions);
$('#submenu').hide();
});
Thanks
You are probably referencing the path of the jqDock.js wrong. So check your HTML and make sure that you linking to the jqDock file properly.