Currently the editor that I am using is Adobe Dreamweaver. In my editor the following statements work during trial, however in my browsers such as Safari, Mozilla, and Chrome my fade in and fade out is not working at all. I'd like for them to constantly fade out then fade back in, but the images still remain visible. Any incites as to why this is happening to me?
$(document).ready(function(){
var x=0;
while(x==0 ){
$("#Imag1").fadeOut(3000);
$("#Imag2").fadeOut(8000);
$("#Imag3").fadeOut(6000);
x++;
if(x==1){
$("#Imag1").fadeIn(2000);
$("#Imag2").fadeIn(5000);
$("#Imag3").fadeIn(9000);
x--;
}
}
});