Skip to content

Instantly share code, notes, and snippets.

@laiso
Last active August 29, 2015 14:11
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 laiso/11da2c32ae9876fb75b4 to your computer and use it in GitHub Desktop.
Save laiso/11da2c32ae9876fb75b4 to your computer and use it in GitHub Desktop.
英文をメソッド名にするやつ(スネークケース)
var select = window.getSelection().toString();
var text = (select.length>0)? select: document.querySelector("span.gt-card-ttl-txt").innerText;
alert(text.textContent.toLowerCase().replace(" ","_","g"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment