|
Lines 197-203
$(document).ready(function() {
Link Here
|
| 197 |
|
197 |
|
| 198 |
if($(myListBox).find('option').length > 0) { |
198 |
if($(myListBox).find('option').length > 0) { |
| 199 |
$(myListBox).find('option').each( function (){ |
199 |
$(myListBox).find('option').each( function (){ |
| 200 |
if ( $(this).attr('selected') && $(this).val().length > 0 ) { |
200 |
if ( $(this).prop('selected') && $(this).val().length > 0 ) { |
| 201 |
$(myQuery).insertAtCaret("<<" + $(this).val() + ">>"); |
201 |
$(myQuery).insertAtCaret("<<" + $(this).val() + ">>"); |
| 202 |
} |
202 |
} |
| 203 |
}); |
203 |
}); |
| 204 |
- |
|
|