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?

MM126MM126 Posts: 4Questions: 2Answers: 0
     });![](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

Sign In or Register to comment.