This is my first JQuery experience and I\'m on quite a tight deadline. It\'s a bit of an embarrassing question, but here goes. I\'m calling a web service that returns a l
Using Array.split() will produce an array:
var string = "red,blue,green,orange" $.each(string.split(','), function(){ alert(this) })