How do I prevent a default selection on the date range picker (V4)?

My HTML

<input id=daterange placeholder='Please select...'>

My javascript.

$('#daterange').mobiscroll().range({
   showSelector: false,
   display:'bottom',
   dateFormat: js_dateformat,
   responsive: {
       small:{
         display: 'center'
       }
   },
});

It works fine except when I open the date picker it has the next seven days selected by default. I find this a bit confusing for the user so I’d prefer to have it open up without any dates pre-selected. How do I do this?

Hi Vincent, you could pass the defaultValue: null option as well.

Thank you, that works perfectly.