Question

Need help with creating this JavaScript file. I'm not sure where or how to begin.


1. You are working solely with the DOM object. Thus, you should be coding primarily in the js file. You must use the addEventListener, in addition you may need to use id and class attributes as needed. The .html and .css files have been provided to you. See the .png files for an example of what is expected.

2. Place the javaScript file in its folder.

3. Roll over the yellow button and make the paragraph below it disappear.

4. Click the blue button and using an alert display information about MTC. Create an array to hold the data. Using a loop, display the data. MTC offers more than 120 degree, diploma and certificate programs. MTC has 6 Campuses. MTC offers courses in both the day and evening. MTC offers distance learning opportunities.
  
5. Click the purple button and display information about online Universities in a paragraph below the button. You consider using a JSON object. In the style sheet,
set the font size of the below paragraph to .75em. University Name, Motto, Number of Enrolled Students, Location, and Website Review the image for a list of the particulars Each university name should have a different color. With each click, the paragraph is refreshed. The data should not accumulate.

HTML

<!doctype html>
<html lang="en">
<head>
   <title>addEventHandler book practice.</title>
   <link rel="stylesheet" href="css/style.css" />
</head>
<body>

<section>
<!-- You should:
       1. Rover over the below button and make the paragraph below it disappear.
-->
<input type="button" value="Roll Over Me" class="rollOverMe" />
<p>This paragraph will burn from the heat of the sun!</p>
</section>

<section>
<!-- You should:
       2. Click the below button and using an alert display information about MTC. See the .txt files
       for the particulars.
   -->
<input type="button" value="MTC" class="MTC" />
   </section>

<section>
<!-- You should:
       3. Click the below button and display information about online universities in a paragraph below the button.
       See the .txt files for the particulars.
   -->
    <input type="button" value="Click Me" class="Universities" />

</section>

</body>
</html>


  


   

CSS

body
{
background-color:White;
}

.hide
{
display: none;
}

.rollOverMe
{
width:200px;
height:200px;
background-color:yellow;
color:darkgray;
margin-top:50px;
font-size:2em;
border-radius: 100px 100px;
border: 1px solid darkgray;
}

.MTC
{
width:200px;
height:200px;
background-color:blue;
color:yellow;
margin-top:50px;
font-size: 2em;
border-radius: 100px 100px;
border: 1px solid darkgray;
}

.Universities
{
width:200px;
height:200px;
background-color:purple;
color:white;
margin-top:50px;
font-size:2em;
border-radius: 100px 100px;
border: 1px solid darkgray;
}

p
{
font-size:1.5em;
margin:10px;
}

section
{
margin-left:50px;
float:left;
width:450px;
}

Click Me Roll Over Me MTC University Name: University of Phoenix Motto: We Rise Number Enrolled: 142,500 Location: Phoenix, A

0 0
Add a comment Improve this question Transcribed image text
Answer #1

<script>
document.getElementById("rollOverMe").addEventListener("mouseover", function(){
     document.getElementById("hide_para").style.display="none";
});

document.getElementById("MTC").addEventListener("click", function(){
     var info = ["MTC offers more than 120 degree, diploma and certificate programs", " MTC has 6 Campuses","MTC offers courses in both the day and evening", "MTC offers distance learning opportunities."];
     var i;
     for(i=0;i<info.length;i++){
     window.alert(info[i]);
     }
});

document.getElementById("universities").addEventListener("click", function(){
      var data = "add your data here";
      document.getElementById("university").innerHTML = data;
});

</script>

Add a comment
Know the answer?
Add Answer to:
Need help with creating this JavaScript file. I'm not sure where or how to begin. 1. You are working solely with the DOM object. Thus, you should be coding primarily in the js file. You must use...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT