KimiEatsCode
10/19/2015 - 6:01 AM

gbOZxN

gbOZxN


<div class="feedback">
<h1>Feedback MadLip</h1>

My favorite part of tonight's concert was <span class="favPart"></span>. I wish there was more of <span class="wish"></span>. <span class="noYes"></span> come back for another conert. If I could change one thing about the concert I would change <span class="change"></span>. I would like to thank <span class="thank"></span> tonight for making this concert a good one. 
</div>


/*

var name = prompt("What is your name?");
var place = prompt("Where do you live?");

*/

//function usualQuestion (animal,food) {
 // alert(animal,food);
 //


var favPart=prompt("What was your favorite part of tonight's concert?");

var wish=prompt("Is ther anything you wish there was more of or less of?");

var noYes=prompt("Yes or No, will you come to another concert after this one this year?");

var change=prompt("Is there anything you would chanage about tonight's concert?");

var thank=prompt("Who would you like to thank for tonight's performance?");

 $(".thank").append(favPart);  
             

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>


.feedback {
  margin:0 auto;
  width:500px;
  display:block;
  color:#000;
  font: 16px "Arial", sans serif;
  line-height:20px;
 }

span {
  color:red;
}