I need to break apart a string that always looks like this:
something -- something_else.
I need to put "something_else" in another input field. Currently, this string example is being added to an HTML table row on the fly like this:
tRow.append($('<td>').text($('[id$=txtEntry2]').val()));
I figure "split" is the way to go, but there is very little documentation that I can find.