I know I am supposed to have a go at the code so I can post my effort here but I've tried a few times to do this and my code is a mess. Apologies.
I have a tab delimited string and I want to convert this to a HTML table with 3 columns. So if the string has 6 values then I would like this to be 2 rows. For example:
aa | bb | cc | dd | ee | ff
would become
aa | bb | cc
dd | ee | ff
Is there a way to do this with JavaScript or jQuery?
Thanks for your help.