Skip to content

Instantly share code, notes, and snippets.

@Steph-harris
Last active August 29, 2015 14:24
Show Gist options
  • Save Steph-harris/5810abbe5ff0b7e586cd to your computer and use it in GitHub Desktop.
Save Steph-harris/5810abbe5ff0b7e586cd to your computer and use it in GitHub Desktop.
Ex. 16
$(document).ready(function(){
//all my code goes here
$("#usermessage").css("background-color", "silver");
$("#submit").on("click", function() {
console.log("clicked")
var comment = $("#usermessage").val();
comment = comment.toUpperCase();
console.log(comment)
$("#visible-comment").html(comment);
return false;
});
}) //closed doc read. no code below here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment