lightswitch05 / table-to-json

Serializes HTML tables into JSON objects.
http://lightswitch05.github.io/table-to-json/
MIT License
756 stars 172 forks source link

Ignore the first row/th #59

Closed anubhavrawal closed 2 years ago

anubhavrawal commented 2 years ago

I have my table header that's being added as the first row of the string. I was hoping there could be a feature to ignore the first row/header from the text

var table = $('#DataTab').tableToJSON({
                ignoreColumns:[5],
                headings: ['campus','building','room_num','capacity','room_type']
            });