DatePicker in Woocommerce (My Account) Registration [closed]

Don’t include jquery from any other source, it will create conflict. Bcoz jQuery is pre bundled in wordpress by default.

For your question, add an id or class to the input element then add the datepicker based on the class. For example

<input type="text" class="da_test" value="" >

<script type="text/javascript">
    $(window).load(function()
    {
        $('.da_test').glDatePicker();
    });
</script>

This will avoid datepicker to appear in every input element.