The slide effect only works if I test the file in my computer, if I put in a linux/cpanel host it does not work. Please note, all .js files are external (in jquery server) I dont know what is wrong. Can somebody help me? I use chrome.
jQuery:
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ui.jquery.com/latest/ui/jquery.effects.core.js"></script>
<script src="http://ui.jquery.com/latest/ui/jquery.effects.slide.js"></script>
<script>
$(document).ready(function() {
$("#slide").show("slide", {direction: "left"}, 1000);
});
</script>
html:
<div id="slide">
teeeeeeeeeeeeeeeeeeeeeeeeeeste
</div>
For some reason this fiddle doesn’t work (using your sources for jQuery): http://jsfiddle.net/YJaME/8/
But replacing it with Google’s version of jQuery makes it work just fine: http://jsfiddle.net/YJaME/9/
It’s the same code, with the only difference being what I am including in the
src. Is there a reason why you are using the version that you are vs. Google’s hosted one? If not I would see if changing this around helps any.