var myKitties = [ { title: "First Project", pic: "https://www.petfinder.com/wp-content/uploads/2012/09/Blog-Kitty-Cam-solo.jpg" }, { title: "Second Project", pic: "http://www.animal-photography.com/thumbs/red_tabby_long_hair_kitten_~AP-0UJFTC-TH.jpg" }, { title: "Third Project", pic: "http://www.animal-photography.com/thumbs/silver_tabby_kittens~AP-0JO6Y9-TH.jpg" }, { title: "Fourth Project", pic: "http://www.animal-photography.com/thumbs/silver_tabby_kitten_looking_up~AP-0DLVMB-TH.jpg" } ]; $(document).ready(function(){ $(".message-box").css("background-color", "pink"); $("#submit-button").on("click", function() { // now we're going to work in here console.log("clicked"); var comment = $(".message-box").val(); console.log(comment); $("#visible-comment").html(comment); return false; }); $(".message-box").on("keyup", function() { console.log("keyup happened"); var charCount = $(".message-box").val().length; console.log(charCount); $("#char-count").html(charCount); if(charCount > 50) { $("#char-count").css("color", "red"); } else { $("#char-count").css("color", "black"); }; }); var rows = $(".my-row"); console.log("rows working"); for(var i=0; iTitle: " + myKitties[this.id].title + "

"); }).mouseleave( function() { $("p.info").html(""); }); });