Here's a very simple question... can I add/chain the JS method .split() to jQuery's .val() method? For example...
var myNewArray = $("#myString").val().split(",");
I seem to get $("#myString").val().split is not a function in Firebug? I thought I could chain my JS and jQuery methods, perhaps I was wrong?
Thanks