I\'m learning Angular.js and I set {{title}} and I try to change that using select element
{{title}}
Use $rootScope
.when('/', { templateUrl: '/templates/page/home.html', controller: ['$scope','$rootScope', function ($scope,$rootScope) { $rootScope.title = 'Учитель24.рф'; }]});