Showing 7 Result(s)
DataTables

DataTables – Turn your ordinary HTML table into an interactive table

DataTables is a plug-in that can turn your ordinary table into an awesome interactive table. You just have to call a function only. So let’s get started. If you are using Bootstrap then awesome, just include these files into the HTML document: CSS: <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.19/css/dataTables.bootstrap4.min.css” /> JS: <script src=”https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.19/js/jquery.dataTables.min.js”></script> <script src=”https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.19/js/dataTables.bootstrap4.min.js”></script> And of course, …

IIFE Javascript

IIFE – Immediately Invoked Function Expression

I see many developers found in a situation where they mess up variable name conflict especially in JavaScript, as var is a global scope. In order to avoid variable name conflict, we should write code in a way so that we can get out of it. For that, we use IIFE statements where we can minimize …