So I have created a class titled 1 and when I call it using the jQuery code below;
<script>
    $(document).ready(function() {
        $(".1").hide().fadeIn(3000);
    });
</script>
The Fade-In Effect does not work.
Here's all the necessary code;
<!DOCTYPE html>
<html>
<head>
<style>
body {
      background: url(bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
span.1{
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    width: 8em;
    margin-top: 6em;
    font-size: 40px;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(document).ready(function(){$(".1").hide().fadeIn(3000);});
</script>
</head>
<body>
<span class="1">Testing the Fade!</span>
</body>
</html>
 
     
     
     
    