Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery DataTables - Remove Label

Tags:

I'm trying to remove the words "Search:" from the filter label in DataTables. I have tried to use jQuery to replace the label dom but when replaced the filter will not work. Any one have any other solutions?

Well seems everybody wants code:

<div id="table-staff_wrapper" class="dataTables_wrapper"> <div id="table-staff_length" class="dataTables_length"> <div id="table-staff_filter" class="dataTables_filter"> <label> Search: <input type="text"> </label> </div> <table id="table-staff" cellspacing="0" cellpadding="0"> <div id="table-staff_info" class="dataTables_info">Showing 1 to 3 of 3 entries</div> <div id="table-staff_paginate" class="dataTables_paginate paging_full_numbers"> 

the above is auto generated by DataTables

like image 470
d123 Avatar asked Nov 24 '11 06:11

d123


1 Answers

refer this link http://datatables.net/ref#sinfo

add this thing to your code--

"oLanguage": { "sSearch": "" }  

even if you don't get what you wished then you can simply post the same question on dataTable forum...dataload team will assist you...

Hope it will help you..

like image 173
Vivek Avatar answered Sep 19 '22 12:09

Vivek