Factors That Affect the Perception of an Individual

Aparna Singh
Updated on 13-Apr-2023 14:40:25

21K+ Views

Before discussing anything about the above topic, let’s first understand what is meant by "perception." Perception is a process by which an individual interprets anything that comes in front of him or her. It is the way in which he or she utilizes his or her sensory impressions to interpret a particular situation and give a particular meaning to the environment. However, what we perceive can differ widely from what reality is. For example, most employees view an organization as the best place to work because it has favorable working conditions, interesting job roles, better pay, and excellent benefits, but ... Read More

Domains Contributing to Organisational Behaviour

Aparna Singh
Updated on 13-Apr-2023 14:39:46

867 Views

Organisational behaviour is a domain that has built itself by taking into consideration the various behavioural science domains. Various behavioural sciences have contributed to its significance. It has contributions from various behavioural disciplines mainly psychology and social psychology, sociology, and anthropology. The contributions of psychology are mainly at the micro level of analysis or we can say individual level, while the other disciplines have contributed to the organisational behaviour at the macro level or group processes and organisation level. Contributing domains of organisational behavior Let's understand every discipline which has contributed to organisational behaviour. Psychology Let's first understand ... Read More

Different Views of Conflict

Aparna Singh
Updated on 13-Apr-2023 14:39:01

3K+ Views

Let's first explain what we mean by "conflict." Conflict is a perception of thoughts. When no one is aware of the conflict, it is generally believed that no conflict exists. So conflict is a process that begins when one side perceives that the other side has or is about to negatively affect something that the first party cares about. Examples of conflict in an organisation Incompatibility of goals Differences in the interpretation of factors Disagreement based on behavioural expectations It is right to say there has been a lot of controversy over the role of conflict in different types ... Read More

Hide Seek Bar in Video.js Player

Prince Yadav
Updated on 13-Apr-2023 14:35:48

4K+ Views

In this tutorial, we'll look at how to hide the seek bar or progress bar of a video player using video.js. Video.js lets you create video players for a video of video formats like mp4, WebM, and FLV and also for modern video playback formats like YouTube, Vimeo, Flash, etc. Video.js is widely used on a number of websites because of the extensive plugin support it provides alongside supporting a wide range of devices like desktops, mobiles, etc. For the purpose of this tutorial, we're to customize our video player by disabling or hiding the control bar of the video ... Read More

Create Asynchronous Function in JavaScript

Tarun Singh
Updated on 13-Apr-2023 14:28:39

2K+ Views

A JavaScript asynchronous function is a function that runs independently of the main flow of the program. This allows the program continues executing other code while the async function is running. Async is used to declare an async function, which runs asynchronously, and await is used to pause the execution of the function until a specific asynchronous task is achieved. Method to create an Asynchronous function Using async keyword The simplest way to create an asynchronous function is to use the async keyword before the function declaration. See the below syntax − Syntax async function fetchData() { ... Read More

Select All Links Inside Paragraph Using jQuery

Tarun Singh
Updated on 13-Apr-2023 14:26:17

1K+ Views

jQuery is a popular JavaScript library that simplifies HTML DOM traversal, event handling, and AJAX interactions for rapid web development. It offers a wide range of built-in functions and methods that help developers to manipulate HTML elements, styles, and behaviors dynamically. In this article, we will see how to select all links inside a paragraph using jQuery. Selecting links inside a paragraph is a common requirement when we want to modify the links in a particular section of our website, such as changing styles, finding links, etc. How to select all links inside the paragraph? Selecting links inside the ... Read More

Select All Even and Odd Rows in a Table Using jQuery

Tarun Singh
Updated on 13-Apr-2023 14:22:11

808 Views

Working with tables is a very common task when it comes to developing web applications. And sometimes we may need to select a specific row from a table. Let’s say we want all the even or odd rows, but how to do that? In this article, we will see how to select all even/odd rows in a table with jQuery. Approaches to select all even/odd rows in the table To select all even rows in a table using jQuery, we have different approaches to achieve this task. Below we have discussed the three approaches that are commonly used in ... Read More

Blazor Framework vs JavaScript Frameworks

Tarun Singh
Updated on 13-Apr-2023 14:06:19

2K+ Views

Web development is a rapidly evolving field, and Microsoft's Blazor framework is one of the latest entrants in the arena. Blazor is a client-side web framework that allows developers to build web applications using C# and .NET instead of JavaScript. While JavaScript frameworks like Angular, React, and Vue.js have been popular choices for web development for many years, Blazor offers some unique advantages that make it an attractive alternative. In this article, we will discuss how blazor framework may be considered better than JavaScript frameworks, including language familiarity, rendering, code sharing, tooling, security, etc. We’ll also know about the ... Read More

How AJAX Works: Difference Between AngularJS and jQuery

Tarun Singh
Updated on 13-Apr-2023 13:55:43

500 Views

Ajax which stands for Asynchronous JavaScript and XML is a set of techniques used in web development that allow the web pages to update the data without refreshing the entire web page. It can load and display data dynamically and respond to user input simultaneously giving a seamless user experience. With the help of this technique, the data can be sent and retrieved from the server asynchronously. The essential components used while implementing Ajax consist XMLHttpRequest (XHR) object − The XHR object sends HTTP requests to the server and receives responses. Server-side script − processes the data and returns ... Read More

Create an Array with Multiple Objects Having Nested Key-Value Pairs in JavaScript

Tarun Singh
Updated on 13-Apr-2023 13:48:57

6K+ Views

JavaScript is a versatile language that is widely used for creating dynamic web applications. One of the most common data structures used in JavaScript is the array. An array is a collection of elements that can be of any type, including objects. In this article, we will discuss how to create an array with multiple objects having multiple nested key-value pairs in JavaScript. What are arrays? An array is a special type of object that stores a collection of values. These values can be of any data type, such as numbers, strings, booleans, and even other arrays. Arrays are a ... Read More

Advertisements