I am a beginner in javascript. I want you scroll through the pages in a specific place appeared in the text. I try to do this using fadeIn (), but does not go to me. Browser do not see any effect. I would be very grateful for an explanation.
<div id="about_content">
<p id="randomText">Lorem ipsum dolor sit amet, ...</p>
</div>
<script>
$(document).ready(function() {
$(".randomText").fadeIn('slow');
);
</script>
#about_content{
box-sizing: border-box;
width: 70vw;
height:50vh;
background-color: pink;
margin: 0 auto;
position:relative;
top:25vh;
padding:20px;
}
#randomText {
font-size:1.5em;
}