$.ajax({
dataType: "text",
url: "closed.txt",
cache: false,
success: function (value) {
if (value !== "true")
return;
$('.closed').html( /*html*/ `
My commissions are currently closed.
If you are willing to wait until they reopen, you can still contact me with a summary of your request.
`);
//
Alternatively, you can also commission my friend Quarris, who has done some great work in the past.
}
});