Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created July 6, 2023 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/e9b2fe42351530295681843f1ab49498 to your computer and use it in GitHub Desktop.
Save bjoerntx/e9b2fe42351530295681843f1ab49498 to your computer and use it in GitHub Desktop.
function replaceWord(word) {
return new Promise(resolve => {
$.get("home/replaceWord", { word: word })
.done(data => resolve(data))
.fail(() => resolve(null));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment