How would you go about breaking up a textarea value into an array, based on the end of line separation? Use of jQuery is cool by me...
This should work (tested in Firefox and Google Chrome):
var arrayOfLines = $('#textAreaID').val().split('\n');