JSFiddle - React, Tailwind, and code Playground

by Stefan Zamfira

HTML

<select name="shipping_address_id" id="shipping_customer_address" class="customer_address" title="" onchange="shipping.newAddress(!this.value)">
     <option value="48" selected="selected">p p, yui, cfg,  90602-1234, U.S. Minor Outlying Islands</option>
     <option value="52" selected="selected">e B, ewri, csdfwefg,  90602-1234, U.S. Minor Outlying Islands</option>
     <option value="">New Address</option>
</select>

JavaScript

$(document).ready(function(){
    $('#shipping_customer_address option').filter(function(){return !$(this).val().length }).prop('selected','selected');
});