How do you retain the changed name of a link after a reload or refresh of that page?
$("a").click(function(){
$(this).text("Hello");
});
At the moment, if I hit refresh, the link's name will be back to original. In this case, I want to retain the value hello.
Help please.