I have a select menu.
<select id="dd" ng-show='data != null' ng-model='search'></select>
I triggered the filter to USA as default
$scope.search = 'United States of America';
So far the filter seem to work, but none of my jQuery seem to work.
$scope.search = 'United States of America';
$("#dd").val('United States of America');
$("#dd").attr("selected","selected");
You may see what I have here : JSFiddle
Result now :
Result I want it to be :
What else I should look into to debug this further ?

