,

Creating Radio Buttons with AngularJS

Posted by

AngularJS Radio Button Example

AngularJS Radio Button Example

Option 1
Option 2
Option 3

You selected: {{selectedOption}}

var app = angular.module(‘radioButtonApp’, []);
app.controller(‘radioButtonCtrl’, function($scope) {
$scope.selectedOption = ‘option1’;
});