I am having an issue with my ng-repeat code in conjunction with the jquery multiple-select plugin. Despite using this plugin for a multiple select functionality, the options generated by ng-repeat are not visible.
Below is the code snippet in question:
<select multiple="multiple" class="browser-default" name="userprofile" id="userprofile"
ng-model="user.profile">
<option ng-repeat="profile in userprofiles" value="{{profile.profile}}">
{{ profile.profile_name }}
</option>
<script type="text/javascript">
$(document).ready(function(){
$('#userprofile').multipleSelect();
});
</script>