I am new to angularJS .. previous I use to work with Jquery.
So I have question in my mind, can we access variable which are declared in angularJS "$scope.options" using jquery.?
var hostApp = angular.module('hostApp', []);
hostApp.controller('hostController', function ($scope) {
$scope.options = [
{ value: '1', label: 'hosting1' },
{ value: '2', label: 'hosting2' },
{ value: '3', label: 'hosting3' }
];
$scope.hostSelected = $scope.options[0];
});