index.js 158 B

1234567
  1. function sayGoodbye() {
  2. $("#title").html("Goodbye");
  3. $("#title").click(function () {
  4. $("#title").html("Hello");
  5. $("#title").off("click");
  6. });
  7. }