Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide jquery datepicker prev/next text

Here is code

enter image description here

You can see the button and the prev ,next overlap

How to hide the prev ,next text ??

like image 606
user2492364 Avatar asked Jan 25 '26 17:01

user2492364


2 Answers

DEMO

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    color: transparent;
}

You can use css to hide the next and previous button as shown in the demo

like image 70
guradio Avatar answered Jan 28 '26 09:01

guradio


.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    font-size: 0;
}

You can hide the font by setting the css font-size to 0.

Demo

like image 43
rifa_at_so Avatar answered Jan 28 '26 10:01

rifa_at_so



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!