Skip to main content

Posts

Showing posts from September, 2015

Ajax Form Submission AngularJS

Ajax Form Submission AngularJS AngularJS is an MVC JavaScript framework which elegantly separates controller, business and model logic in your application. HTML page <!DOCTYPE html> <html> <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script> </head> <body ng-app="AddUser"> <form ng-controller="AppCtrl" name="add_user">             <div class="modal-header">                 <h3 class="modal-title">Add User Form</h3>             </div>             <div class="modal-body">                 <input type="text" class="form-control" name="user_email" ng-model="user_name" placeholder="Ent...