Execute
<!DOCTYPE html> <html> <head> <title>Wikitechy AngularJS Tutorials</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"> </script> </head> <body> <div ng-app="myApp" ng-controller="timeCtrl"> <h3>See the content after 5 seconds. </h3> <h3> {{mycontent}} </h3> </div> <script> var app = angular.module("myApp", []); app.controller("timeCtrl", function($scope, $timeout) { $scope.mycontent = "Welcome to Wikitechy!"; $timeout(function () { $scope.mycontent = "I am New Content After 5 seconds"; },5000); }); </script> </body> </html>
www.wikitechy.com © Copyright 2016. All Rights Reserved.