I use wordpres and by default load the library of the core of jquery load it´s this :
js/jquery/jquery.js?ver=1.8.3
When i go for insert my own script of jquery the result it´s no works , things very easy as this code for example no works :
$(document).ready(function(){
$("#header_sun").fadeIn(4000).delay(4000).fadeOut(4000);
$("body").css("background","#C3DAEC");
});
The example of my code only works if i put in the head of wordpress this :
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
If i put this code until the core jquery of wordpress all my scripts created in jquery works and if no put this no works , i don´t understand why happen this because the jquery i put until of jquery version of core it´s the same but the version minimun
It´s very strange this i try all and don´t understand why no works ok my code and only works if i put or i call the remote library of jquery and no works with the load jquery of wordpress
Regards !