Skip to content

Instantly share code, notes, and snippets.

@inxomnyaa
Last active August 29, 2015 14:07
Show Gist options
  • Save inxomnyaa/71a285dc9d0d4f16e0f0 to your computer and use it in GitHub Desktop.
Save inxomnyaa/71a285dc9d0d4f16e0f0 to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function() {
$("#sbmt").click(function() {
var re = /\/ignore\s(.*?)\s/g;
var m;
var shoutmsgvalue=$("#shoutmsg").val();
while ((m = re.exec(shoutmsgvalue)) != null) {
if (m.index === re.lastIndex) {
re.lastIndex++;
}
alert(m[0]+"\n"+m[1]);
}alert("click");
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment