Last active
June 23, 2021 04:34
-
-
Save dangrossman/1bea78da703f2896564d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('#daterange').daterangepicker({ | |
| locale: { cancelLabel: 'Clear' } | |
| }); | |
| $('#daterange').on('cancel.daterangepicker', function(ev, picker) { | |
| //do something, like clearing an input | |
| $('#daterange').val(''); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment