JQuery JavaScript Tutorial

< html>
  
    
    
$(document).ready(
  function() {
    $('p#tmpQuote-1').text("asdf. asdf");
    $('p#tmpQuote-2').html("asdf. asdf");
  }
);
    
    
p.tmpQuote {
    background: lightblue;
}
p#tmpQuote-2 {
    background: lightgreen;
}
    
  
  
    


      asdf. asdf