Dows anyone know how to remove the "Now" button from the jquery timepicker add on file?

I removed the var currentText = 'Now' but this removes the text but the button is still there which states "Today" instead of "Now". I do not need this button in the timepicker.

I am using trent richardson's timepicker.

The timepicker can be seen on this website: click here

The js file can be seen here, click here

link|improve this question

65% accept rate
feedback

2 Answers

up vote 0 down vote accepted

The 'Now' button replaces the Today button normally, but without text it uses the default.

In your CSS, simply set the now button to "display: none;"

If I remember correctly, you can set this in the .ui-priority-secondary - but not sure if it is used elsewhere.. have a play, but this should be your solution, just depends on usage.

link|improve this answer
feedback

Found my answer here:

I am using the Yii extension and added the code found at the site below to my css/main.css file. Voila!

https://forum.jquery.com/topic/disable-now-in-timepicker

link|improve this answer
1  
Yes, as in the answer above, this code simply adds 'display: none;' to the CSS. – Warren Sergent - spakatak.com Jan 27 at 5:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.