Lines 134-140
$(document).ready(function() {
Link Here
|
134 |
|
134 |
|
135 |
if($(myListBox).find('option').length > 0) { |
135 |
if($(myListBox).find('option').length > 0) { |
136 |
$(myListBox).find('option').each( function (){ |
136 |
$(myListBox).find('option').each( function (){ |
137 |
if ( $(this).attr('selected') ) { |
137 |
if ( $(this).attr('selected') && $(this).val().length > 0 ) { |
138 |
$(myQuery).insertAtCaret("<<" + $(this).val() + ">>"); |
138 |
$(myQuery).insertAtCaret("<<" + $(this).val() + ">>"); |
139 |
} |
139 |
} |
140 |
}); |
140 |
}); |
141 |
- |
|
|