Skip to content

Instantly share code, notes, and snippets.

@tarekdj
Created July 14, 2019 22:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarekdj/4ee00363ef2868b7f441551623004b42 to your computer and use it in GitHub Desktop.
Save tarekdj/4ee00363ef2868b7f441551623004b42 to your computer and use it in GitHub Desktop.
function setKeywordText(text) {
var el = document.getElementById("new_comment_field");
el.value = text;
var evt = document.createEvent("Events");
evt.initEvent("change", true, true);
el.dispatchEvent(evt);
}
setKeywordText("add your content here...");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment