No jQuery needed.
"cat1234".slice(3);
or
"cat1234".substring(3);
or
"cat1234".substr(3);
var str="cat1234";
console.log("using slice =",str.slice(3));
console.log("using substring =",str.substring(3));
console.log("using substr =",str.substr(3));