If you look at the jsfiddle from question,
var str = \"Abc: Lorem ipsum sit amet\"; str = str.substring(str.indexOf(\":\") + 1);
This retur
Another method could be to split the string by ":" and then pop off the end. var newString = string.split(":").pop();
var newString = string.split(":").pop();