Splits a string with a regex correctly cross browser
$.String.rsplit("a.b.c.d", /\./) //-> ['a','b','c','d']
$.String.rsplit(string, regex) -> Array
{String}
The string to split
{RegExp}
A regular expression
{Array}
An array of strings
Splits a string with a regex correctly cross browser