10 lines
		
	
	
		
			216 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			216 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
window.addEventListener('load', () => {
 | 
						|
  let tables = $(".autodatatable").DataTable({
 | 
						|
        "paging": false,
 | 
						|
        "ordering": true,
 | 
						|
        "info": false,
 | 
						|
        "dom": "t",
 | 
						|
    });
 | 
						|
  console.log(tables);
 | 
						|
});
 |