Skip to main content

Posts

Showing posts with the label Quiz questions in AngularJs

Quiz questions in AngularJs

Quiz demo link http://embed.plnkr.co/B10yZ4/preview The AngularJs code-sample var app = angular.module( 'quizApp' , []); app.controller( 'quizCtrl' , function ($scope) {     $scope.checkResult = function (item) {     //check answers.     };     $scope.calRresult = function () {     //calculat result.     };     $scope.quizAnsw = [{ ans: 'Igor Minar' , correct: 0 }, { ans: 'Brad Green' , correct: 0 },         { ans: 'Misko Hevery' , correct: 1 }, { ans: 'Steve Souders' , correct: 0 }]; }); The full example code(HTML + AngularJs) < !DOCTYPE html > < html > < head >     < meta charset ="utf-8" />     < title > Quiz questions in AngularJs </ title >     < link rel ="stylesheet" href ="style.css" />  ...