Hi I have an input field which is attached my model and when the user manually types into it a function is called upon change - this works fine and the model is reflecting as expected in the console log.
<input type="text" class="rating" ng-model="review.Rating" ng-change="change()" />
The issue I now have is that I have a second jQuery function which can be called by the User on the page which auto-populates the input field, but that doesn't seem to trigger an update of the model only the visual value of the input field.
I have therefore added to that second jQuery the following call to trigger an update (based on my research this should be correct)
$(".rating").trigger('input');
This seems to work fine in Firefox and Chrome as I have it reflecting the model in the console log however in IE (I have 11 - unsure of older browsers) the trigger input doesn't seem to work on updating the model.
Hope you can help.