TipsMake
Newest

Program - Page 56

Learn basic programming with C, C++, Python, JavaScript, PHP, CSS, HTML5 programming languages. You can also find tutorials on databases, SQL Server here.

Directive in AngularJS
25 May 2019

Directive in AngularJS

AngularJS directive is used to inherit HTML. There are special attributes that start with the prefix-.

Expression in AngularJS
25 May 2019

Expression in AngularJS

Expression is used to bind application data to HTML tags. Expression is written in {{expression}}. Expression has a similar way of operating as the ng-bind directive.

Controller component in AngularJS
25 May 2019

Controller component in AngularJS

An AngularJS application works primarily based on the controller component to control the flow of data in the application.

The Module in AngularJS
25 May 2019

The Module in AngularJS

AngularJS supports module-oriented approach. The module is used to distinguish the logic, service and application processing ... and make the code clear.

Form in AngularJS
25 May 2019

Form in AngularJS

AngularJS complements the form of filling and validation features. You can use ng-click directive to handle the event by clicking on the button and using the flags $ dirty and $

Include syntax in AngularJS
25 May 2019

Include syntax in AngularJS

HTML does not support embedding HTML web pages in HTML pages. To achieve this function, the following methods can be used:

Ajax in AngularJS
25 May 2019

Ajax in AngularJS

AngularJS provides a $ http control that acts as a service to read data from the server. The server can create calls to the database to receive the logs. AngularJS needs data in

View components in AngularJS
25 May 2019

View components in AngularJS

AngularJS supports Single Page Application through multiple views on a single page. To do this, AngularJS provides ng-view and ng-template directive and $ routeProvider service.

Scope in AngularJS
25 May 2019

Scope in AngularJS

Scope is a special JavaScript object with the role of linking controllers and views. Scope contains information as model data. In the controller, model data can be accessed via

The Service in AngularJS
25 May 2019

The Service in AngularJS

AngularJS supports the concept of Seperation of Concerns - Divide to use service structure. Service is JavaScript functions and is responsible for certain tasks.

Multilingual (i18n) in AngularJS
25 May 2019

Multilingual (i18n) in AngularJS

AngularJS provides multi-lingual functions (i18n) with 3 types of filters, currency, date and number. We just need to combine the js corresponding to the location depending on the

What is jQuery?
25 May 2019

What is jQuery?

jQuery is a new style library of JavaScript, created by John Resig in 2006 with a great motto: Write less, do more - Write less, do more.

Basic about jQuery
25 May 2019

Basic about jQuery

This article will explain the basic concepts commonly used in jQuery such as: string (string), number (number), Boolean, array (array), function, parameter, context, ...

Selector in jQuery
25 May 2019

Selector in jQuery

The jQuery library exploits the power of CSS (Cascading Style Sheets) Selector to help us quickly and easily access elements or groups of elements in the DOM.

Attributes in jQuery
25 May 2019

Attributes in jQuery

Some of the most basic components, we can manipulate DOM elements, are properties and attributes assigned to those elements.

Access the DOM in jQuery
25 May 2019

Access the DOM in jQuery

jQuery is a very powerful tool. It provides various DOM access methods (DOM Traversal Method), which helps us to select elements in a document randomly or in a continuous manner.

CSS Selector in jQuery
25 May 2019

CSS Selector in jQuery

The jQuery library supports almost all Selector in Cascading Style Sheet (CSS), when mentioned on the World Wide Web Consortium.

Manipulate the DOM in jQuery
25 May 2019

Manipulate the DOM in jQuery

jQuery provides methods to manipulate the DOM in an extremely efficient way. You do not need to write code that is too long to modify the attribute value of any element or to

Event handling in jQuery
25 May 2019

Event handling in jQuery

We have the ability to create dynamic websites by using Events. Events are actions that can be detected by your web application.