How to hide search label when screen resize smaller?
How to hide search label when screen resize smaller?
How can I change the way of label present on small screen?
* related
- Search: -> "" (completely hide search on small screen)
- Show XX Entries -> XX (show only select dropdown on small screen)
- Showing 1 to 12 of 65 entries -> X:X / XX (show only that format on small screen)
But large screen show as normal.
This question has an accepted answers - jump to answer
Answers
You could check the screen size on each
draw
, and hide/show the appropriate elements ywith jQuery'shide()
.Colin