How to move the term "Search: " from the left side of the search box?
How to move the term "Search: " from the left side of the search box?
});![](https://datatables.net/forums/uploads/editor/qs/feu35h49pun4.png "")
Hi,
The word Search is above, do you know how to move it to the left of the search box? THANKS
Here is the code
$(document).ready(function () {
$('.example-table').DataTable({
lengthMenu: [10, 20, 50],
pageLength: 10,
language: {
paginate: {
previous: '<',
next: '>'
}
},
initComplete: function() {
var api = this.api();
$('#quickSearch').on('keyup', function() {
api.search(this.value).draw();
});
}
});
Answers
Use
language.search
.Allan