dear-anon/js/index.js

9 lines
191 B
JavaScript

$(document).ready(function() {
$("#nothing").on("click", function() {
setText();
});
});
function setText () {
$("#nothing-header").text("don't you have anything better to do?");
}