I am trying to remove a string from a string in jQuery.
Here is the string:
username1, username2 and username3 like this post.
I would
Pretty sure nobody answer your question to your exact terms, you want it for dynamic text
var newString = myString.substring( myString.indexOf( "," ) +1, myString.length );
It takes a substring from the first comma, to the end