jQuery string split

jQuery, .split()

by dshilkret

JavaScript

var input = "hello.world";

var arr = input.split(".");

alert(arr[1]);