```
Enter a date in the past 30 days: <link href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
```
and this in the Javascript:
```
Qualtrics.SurveyEngine.addOnload(function()
{
jQuery("#"+this.questionId+" input[type=text]").flatpickr({minDate:new Date().fp_incr(-30),maxDate:new Date().fp_incr(-1)});
});
```
It works exactly like I want it too but after the date is selected, all the pages following have this funky image that shows up below the questions on both - the desktop and phone previews.!

Any idea what might be causing this? Thanks!