Tarun Singh has Published 104 Articles

How to style a href links in React using Tailwind CSS?

Tarun Singh

Tarun Singh

Updated on 02-May-2023 13:55:12

1K+ Views

React is a popular JavaScript library used for building web applications. When creating a React application, it's important to style your components in an aesthetically pleasing way. One of the ways to achieve this is by using a CSS framework such as Tailwind CSS. In this article, we will ... Read More

How to specify that the form should not be validated when submitted in HTML?

Tarun Singh

Tarun Singh

Updated on 02-May-2023 13:44:39

793 Views

The element is an essential component available in HTML that enables us to create interactive sections on websites like Contact forms, Login forms, etc. Through the form element, users can input and submit data to web servers. The element is versatile and may include a number of different ... Read More

How to scroll to a specific element using jQuery?

Tarun Singh

Tarun Singh

Updated on 02-May-2023 13:43:25

27K+ Views

jQuery- a popular JavaScript library that is used in manipulating HTML documents, handling events, creating animations, and performing other common web development tasks. jQuery is famous for its ability to simplify JavaScript programming by providing a simple and concise syntax for selecting and manipulating DOM elements. Like using jQuery, ... Read More

How to create an ember handlebars template?

Tarun Singh

Tarun Singh

Updated on 02-May-2023 13:11:52

260 Views

Ember.js is a framework based on javascript that is widely used in building complex web applications. The framework allows developers to create single-page web applications that are scalable just by using some common idioms, best practices, and patterns from other single-page-app ecosystem patterns in the framework. Handlebars templating system ... Read More

How to create an Asynchronous function in JavaScript?

Tarun Singh

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 ... Read More

How to select all links inside the paragraph using jQuery?

Tarun Singh

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 ... Read More

How to select all even/odd rows in a table using jQuery?

Tarun Singh

Tarun Singh

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

806 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 ... Read More

How Blazor Framework is Better Than JavaScript Frameworks?

Tarun Singh

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 ... Read More

How ajax works? Difference between AngularJS and jQuery

Tarun Singh

Tarun Singh

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

490 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. ... Read More

How to create an array with multiple objects having multiple nested key-value pairs in JavaScript?

Tarun Singh

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 ... Read More

Advertisements