Reputation: 18660
I'm trying to feed a SELECT element using JSON values but I can not get it to work. I made a plunker to try out but really don't know where my mistake is. I read also AngularJS API for select, any help on this?
Upvotes: 0
Views: 54
Reputation: 104775
You never declare your app in the HTML, you have angular.module("plunker", [])
-- so you need ng-app="plunker"
in your HTML.
Add ng-app="plunker"
to your body
tag
Upvotes: 1