17/02/2016
http://ustutorials.com/angularjs-tutorials/angularjs-data-insert-to-db.php
wamp phpmyadmin we have database with name of Books-Library along with Table name called Books along with columns. Like name, author, price, language.
Insert Data Into Database in AngularJS
07/02/2016
Angularjs To Do Application with demo-With Simple 5 steps
//to add list
$scope.addTodo = function(){
$scope.todos.push({'title':$scope.newTodo, 'done':false})
$scope.newTodo=''//cleares the input once enter any text in input
}
//to delete list by using input check box
$scope.clearDelete = function(){
$scope.todos=$scope.todos.filter(function(item){
return !item.done// deletes the selected value
})
}
http://goo.gl/QphTcI
Create Angularjs To Do Application with demo
This simple Angularjs Todo-Application with basic steps followed with code examples
26/01/2016
Respects and tributes to all those who participated in Republic day parade! Jawans are real heroes.
Synchronisation of their march, proudly puffed out chest, respect for the tricolor & contempt for the enemy...all this defines an Indian soldier. Jai Hind!
21/01/2016
Data-Binding: – TWD (two-way data binding) main approach is Automatic synchronization of data between model and view components. to read more about two-data-binding click here. AngularJS data-binding is the most useful feature which save you from writing a considerable amount of boilerplate code.
Hello {{name}}
function testController($scope){
$scope.name = 'online tutorials from ustutorials.com'
}
http://ustutorials.com/angularjs-tutorials/angularjs-features.php
09/01/2016
Class 2- Javascript Drop Down Menu
http://ustutorials.com/javascript-tutorials/javascript-drop-down-menu.php
Javascript Drop Down Menu
Javascript drop down menu, with using this below simple code, developed by using html and css code.
09/01/2016
Class 1- JavaScript Login Form Validation
http://ustutorials.com/javascript-tutorials/javascript-login-form-validation.php
Javascript Login Form Validation
Javascript basic login form validation with using html form-In this class we will learn about javascript basic login form validation, now are day every application required, and this code is clear and understandable for every web newbies (beginner).
29/12/2015
Bootstrap buttons are classy and rich interface buttons, in bootstrap provides seven types buttons with different colors(.btn-default, .btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger, .btn-link) and sizes(.btn-lg, .btn-md, .btn-sm, .btn-xs). styles can be applyed to and also for tags. yo can see examples in the below image.
http://goo.gl/VGQstL
Create Bootstrap Template in 10 steps
Create Bootstrap Template in 10 Steps, Bootstrap (Responsive Web Template) Template creation with simple 10 steps, first let us have quick intro about Twitter Bootstrap Responsive front end frame-work, as you all know bootstrap developed by leading micro-blogging site Twitter. Bootstrap is specially…
20/12/2015
https://t.co/ScEv90X64g
$scope.firstName = "thomas";
$scope.lastName = "Cook"; https://t.co/hhcE0yuC1c
US Tutorials (@ustutorials) posted a photo on Twitter
Get the whole picture - and other photos from US Tutorials
20/12/2015
https://t.co/ScEv90X64g
$scope.firstName = "thomas";
$scope.lastName = "Cook";
Angularjs Two Way Data Binding
In the series of this tutorials, we would discuss about angularjs Two Way Data Binding (TWD). Data-Binding: - TWD (two way data binding) main approach is Automatic synchronization of data between model and view components.
10/12/2015
Jquery go top option, without including any extra plugin, even not writing many lines coding, just by writing the bunch of lines code we have achieved.
Jquery Code:-
$(" ").click(function(){
$("html, body").animate({
scrollTop: "0px" }, 200);
});
HTML BUTTON CODE:-
Jquery go to top
Jquery go to top, Jquery go top option, without including any extra plugin, even not writing many lines coding, just by writing the bunch of lines code we have achieved
30/11/2015
angularjs filter
Filters are the most commonly used directive. Angularjs filters is used to format data to present the needed value to the user. And data will be shown as readable format, when we have currency values or any other values like decimals.
26/11/2015
MVC-Model View controller is the key concept of mobile or desktop application, and controller is core and the dictator for the MVC concept.
function Mycontroller($scope) {
// controller code here
$scope.firstname = "michelle";
$scope.lastname = "Obama"
}
http://goo.gl/hMFeqs
Angularjs MVC Introduction
MVC-Model View controller is the key concept of mobile or desktop application, and controller is core and the dictator for the MVC concept.