Hi I am trying to do a google.com like fade in (Cept i want to fade out text)
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$("html").mousemove(function () {
$("p").fadeOut("slow");
});
});
</script>
With that code, my fade out gets automatically activated although I have not moved the mouse. Happens in all browsers. Any tips?