Search Results

1
vote

How to get all options of a select using Jquery?

Some answers uses each, map is a better alternative here imho: $("select#example").children().map(function() {return $(this).val();}).get(); …
1
vote

How to turn a very long column into multiple shorter ones?

Ignoring: Also be sure to keep related items in the same column (ie. if dt 7 is col x, so should dd 7). one possible solution could be …