Horje
Uncaught TypeError: Cannot read properties of undefined (reading 'mData') Code Example
Uncaught TypeError: Cannot read properties of undefined (reading 'mData')
It must contain <thead> and <tbody> tags, otherwise 
it throws this error. Also check to make sure all your rows 
including header row have the same number of columns.

<TABLE class="w3-table w3-striped w3-bordered w3-border w3-white" id="sample-table">
    <thead>
        <tr>
            <th>title-1</th>
            <th>title-2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>data-1</td>
            <td>data-2</td>
            <td>data-3</td>
        </tr>
    </tbody>
</table>




Html

Related
amzaon web scraper html Code Example amzaon web scraper html Code Example
alpinejs event target Code Example alpinejs event target Code Example
html textarea placeholder multiple lines Code Example html textarea placeholder multiple lines Code Example
HTML entities must be escaped Code Example HTML entities must be escaped Code Example
html add hyperlink to button Code Example html add hyperlink to button Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10