﻿
$(document).ready(function () {
    contourdatepicker();
    removeEmptyValueFromSelectInput();
});

function contourdatepicker() {
    $('.contourdatepicker').datepicker({
        changeMonth: true,
        changeYear: true,
        dateFormat: 'D, d M yy',
        altFormat: 'yyyy/mm/dd'
    })
}


function removeEmptyValueFromSelectInput() {
    $("select option[value='']").remove();
}

