- 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

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

Some of the most basic components, we can manipulate DOM elements, are properties and attributes assigned to those elements.
- 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

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

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

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

AJAX stands for Asynchronous JavaScript and XML and this technology helps us to download data from the Server without Refreshing the browser.
- Effects in jQuery

jQuery provides a simple interface to perform different types of amazing effects. JQuery methods allow us to quickly apply common effects with minimal configuration. This
- Calculate inheritance in C #

One of the most important concepts in object-oriented programming is Inheritance. Inheritance allows us to define a class in terms of another class, which makes it easier to
- Polymorphism in C #

Polymorphism in C # can be static or dynamic. In particular, a static polymorph can be called a static polymorph, a response to a function defined at compile time and a dynamic
- Operator overloading in C #

Overloading Operator is Operator Overload. You can redefine or overload most existing operators in C #.
- Interface in C #

An Interface is defined as a contract with syntactical contract that all Interface inheritance classes should follow. Interface defines what part of the covenant and inheritance
- Namespace in C #

In C #, namespaces are designed to keep a set of distinct names separated. The same class names that are declared in different namespaces do not conflict with each other
- Preprocessor directive in C #

Preprocessor Directive directives provide instructions to the compiler to preprocess the information before the actual compilation process begins. All preprocessor directives in C
- Regular Expression in C #

A regular expression is a pattern that can be matched to an input text. The .Net Framework provides a regular expression that allows matching like that. In C #, a pattern
- Handling exceptions (Try / Catch / Finally) in C #

An Exception is an issue that occurs during the execution of a program. An Exception in C # is a response to an exception situation that occurs while a program is running, such as
- I / O file in C #

A file is a collection of data stored on the drive with a specific name and a directory path. When a file is opened for reading or writing, it becomes a stream.
- Attribute in C #

The attribute in C #, is a declaration tag, used to transmit information to the runtime about the behavior of various elements such as classes, methods, structures, enum,
- Reflection in C #

Reflection objects are used to obtain type information at runtime. These classes provide access to the program's metadata running in the System.Reflection namespace in C #.