i would like to use spaces inside a data-chained tag, as i would like to combine customer names to customer adresses. is it possible? at the moment the script is looking for "Michael" or "Jackson", but not able to chain it to "Michael Jackson".
$(function() {
/* For jquery.chained.js */
$("#adress").chained("#customer");
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-chained/1.0.1/jquery.chained.min.js"></script>
<select id="customer" name="customer" class="form-control">
<option value="">please select</option>
<option value="Michael Jackson">Michael Jackson</option>
<option value="Katy Perry">Katy Perry</option>
</select>
<select id="adress" name="adress" class="form-control">
<option value="">please select</option>
<option value="123 First Street, New York" data-chained="Michael Jackson">123 First Street, New York</option>
<option value="456 Last Street, San Francisco" data-chained="Katy Perry">456 Last Street, San Francisco</option>