I have encountered a very strange problem.
I am building a reporting package and part of it uses the daterangepicker library to, well, pick a date range. However, during the function that creates everything, it just stops once it gets to the creation call $("#date-range-picker").daterangepicker(options)
. After some time tracing the calls through daterangepicker, jQuery, and jQueryUI, I discover that a call to new Date()
is failing with the error RangeError: Maximum call stack size exceeded
, and it seems that the code inside just stores the error and still thinks its a Date object.
I tested creating a new date while the script was paused there and it caused the same error. The same error happens once the script has fails. But not before the script starts.
UPDATE: I found the problem, it was a repetition of the daterangepicker script include.
use dynamic IDs for datepicker if you use datepicker more than one time at same page.