I'm looking for a bit of advice on this javascript (jQuery) issue (I'm not a frontend dev, so please bear with me ;-))
I have one large <ul>
that I need to split in three separate <ul>
s with an equal number of menuitems in each. So if I have five <li>
s in my large <ul>
, it will look like this:
Listitem 1 Listitem 3 Listitem5
ListItem 2 Listitem 4
etc.
Is there any way of doing this in javascript/jQuery? :-)
Thanks in advance.