I am using jQuery multifilter plug-in, but the multi column search works good only for the current page, how can I use the same plug-in to search the entire data-table(from other pages as well)? Kindly help, Thanks.
Multicolumn search using jQuery plugin MultiFilter :
$(document).ready(function () { $('.filter').multifilter() console.log(jQuery().jquery); })
<div class='filter-container'> <input autocomplete='off' class='filter txtBox2 ' id="txtB2" name='firstname' placeholder='First Name' data-col='First Name' /> </div> <div class='filter-container'> <input autocomplete='off' class='filter txtBox3 ' id="txtB3" name='lastname' placeholder='Last Name' data-col='Last Name' /> </div> <div class='filter-container'> <input autocomplete='off' class='filter txtBox4 ' id="txtB4" name='dateofbirth' placeholder='Date of Birth' data-col='Date Of Birth' /> </div>