$(".hide").on("click", function () { $(".greeting").hide(); });
$(".show").on("click", function () { $(".greeting").show(); });