32 lines
886 B
JavaScript
32 lines
886 B
JavaScript
//let datepicker_wrapper = document.querySelector(".datepicker-wrapper");
|
|
//console.log("datepicker-wrapper: ", datepicker_wrapper);
|
|
//
|
|
//let mydate = document.createElement("input");
|
|
//mydate.setAttribute('type', 'text');
|
|
//mydate.setAttribute('style', 'margin-top:10px;');
|
|
//datepicker_wrapper.appendChild(mydate);
|
|
//
|
|
//console.log("mydate: ", mydate);
|
|
//mydate.value = "oups";
|
|
//
|
|
//$(mydate).datepicker({dateFormat: "yymmdd",});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
* overriding the datepicker function to intercept the arguments
|
|
*
|
|
*/
|
|
// Store the original jQuery UI datepicker function
|
|
const originalDatepicker = jQuery.fn.datepicker;
|
|
jQuery.fn.datepicker = function(options) {
|
|
// Log the function call and its arguments
|
|
console.log('Datepicker function is called with options:', options);
|
|
|
|
// Call the original datepicker function with the same arguments
|
|
return originalDatepicker.call(this, options);
|
|
};
|