$.ajax({
dataType: "text",
url: "closed.txt",
cache: false,
success: function (value) {
if (value !== "true")
return;
$('.closed').html( /*html*/ `
My commissions are currently closed.
Check this site periodically to see if they have opened back up. Please don't contact me until they do.
`);
//
Alternatively, you can also commission my friend Quarris, who has done some great work in the past.
}
});