// source --> https://dreamgreencbd.de/wp-content/plugins/woo-orders-tracking/assets/js/frontend-shortcode-form-search.js?ver=1.1.8.4 
jQuery(document).ready(function ($) {
    $(document).on('click', '.vi-woocommerce-orders-tracking-form-search-tracking-number-btnclick', function () {
        let tracking_number = $('.vi-woocommerce-orders-tracking-form-search-tracking-number').val();
        if (!tracking_number) {
            alert(vi_wot_frontend_form_search.error_empty_text);
            return false;
        }
    });
});