- Forums
- General Errors
- [SOLVED] DataTables: Uncaught Type Error: Fa Is Undefined
[solved] Console Error Log: Uncaught Typeerror: Fa Is Undefined Datatables [5024], Last Updated: Mon Jun 24, 2024
edwin
Sun Oct 30, 2022
0 Comments
718 Visits
Uncaught TypeError: fa is undefined
This error means you have a bad table structure, make sure you follow these rules that worked for me.
1. Do not use colspan=""
2. be sure you use <thead>
3. Be sure to sue <tbody>
Example of the proper table structure
<table class="table table-bordered">
<thead>
<tr>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Content</td>
</tr>
</tbody>
</table>