chosen more add problem

chosen more add problem

by Kabir Hossain

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/chosen/1.1.0/chosen.jquery.min.js&quot; title=&quot;//cdnjs.cloudflare.com/ajax/libs/chosen/1.1.0/chosen.jquery.min.js"></script>
<script src="https://github.com/harvesthq/chosen/blob/master/sass/chosen.scss"></script>
<table>
		<tr>
			<th>Names</th>
			<th>Product Names</th>
		</tr>
		<tr class="data-wrapper">
			<td>
				<select class="form-control required chosen-select-width name" name="name" aria-required="true">
					<option value="name1">Name 1</option>
					<option value="name2">Name 2</option>
					<option value="name3">Name 3</option>
					<option value="name4">Name 4</option>
					<option value="name5">Name 5</option>
				</select>
			</td>
            <td><input type="text" name="product-names"/></td>
		</tr>
	</table>
	<button type="button" class="btn add-new-data"> Add </button>

CSS

/* @group Base */
 .chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    zoom: 1;
    *display: inline;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    min-width: 100px !important;
}
.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #aaa;
    border-top: 0;
    background: #fff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.chosen-container.chosen-with-drop .chosen-drop {
    left: 0;
}
.chosen-container a {
    cursor: pointer;
}
/* @end */

/* @group Single Chosen */
 .chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    height: 27px;
    border: 1px solid #ccc;
    background-color: #fff;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
    background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
    background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
    background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
    background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
    background-clip: padding-box;
    box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    line-height: 24px;
    font-size: 14px;
}
.chosen-container-single .chosen-default {
    color: #999;
}
.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space:...

JavaScript

jQuery(function($){
	$('select.name').chosen({width: "100%"}); 
	var clone = $("table tr.data-wrapper:first").clone(true);
	$('body').on('click', '.add-new-data', function() {
		var ParentRow = $("table tr.data-wrapper").last();
		clone.clone(true).insertAfter(ParentRow);
		$('tr.data-wrapper:last select').chosen();
	});
});