How to get the width of a column
How to get the width of a column
I can see a datatable's column's width by inspecting the element in firebug. There it is under element.style { width: 64px; }
How do I get this value programatically in javascript?
$('#table_id thead th:eq('+index+')').css('width');
That shows undefined.
How do I get this value programatically in javascript?
$('#table_id thead th:eq('+index+')').css('width');
That shows undefined.
This discussion has been closed.
Replies
Allan