Skip to content

Instantly share code, notes, and snippets.

@AgentCoop
Last active February 18, 2016 09:13
Show Gist options
  • Save AgentCoop/a5d9560820432defe640 to your computer and use it in GitHub Desktop.
Save AgentCoop/a5d9560820432defe640 to your computer and use it in GitHub Desktop.
Text editing in Firefox
// Convert all words in uppercase to capitalized ones
var a = $('textarea').text().replace(/((?!ВКС|РФ|СМИ)([А-Я])([А-Я\-]+))/g,
function(match, p1, p2, p3) { return p2 + p3.toLowerCase() });
$('textarea').text(a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment