Found 8591 Articles for Front End Technology

How to design a checkbox selection for a webpage using jQuery EasyUI?

Asif Rahaman
Updated on 17-Apr-2023 15:17:27

321 Views

jQuery EasyUI is a popular open-source JavaScript library that provides a simple way to create user interfaces for web applications. One of the key features of EasyUI is the ability to create a variety of input elements, including check boxes. In this article, we will explore how to design a checkbox selection for a webpage using jQuery EasyUI. Example Checkbox Example body { font-family: Arial, sans-serif; ... Read More

How to design buttons for mobiles using jQuery EasyUI Mobile?

Asif Rahaman
Updated on 17-Apr-2023 15:16:10

261 Views

In today's world, mobile devices are increasingly used to access the internet. Hence, it is essential to design web pages that are mobile-friendly. One of the key components of mobile-friendly web pages is buttons. Buttons are an essential component of any mobile application or web page, and it is vital to design them appropriately. jQuery EasyUI Mobile is a powerful framework that can be used to design buttons for mobiles. In this article, we will discuss how to design buttons for mobiles using jQuery EasyUI Mobile. Design The Button Component To get started with jQuery EasyUI Mobile, we need to ... Read More

How to design badges for mobiles using jQuery EasyUI Mobile?

Asif Rahaman
Updated on 17-Apr-2023 15:12:20

179 Views

Badges are a common design element used in mobile applications to convey information to users. A badge is a small visual indicator that displays information, such as the number of notifications or messages a user has. jQuery EasyUI Mobile is a framework that makes it easy to create badges in your mobile app design. In this article, we'll walk you through how to design badges for mobiles using jQuery EasyUI Mobile. Getting Started With jQuery EasyUI Mobile jQuery EasyUI Mobile is a lightweight framework for creating mobile apps that use jQuery and HTML5. It provides a set of user interface ... Read More

How to design a calendar for a web page using jQuery EasyUI?

Asif Rahaman
Updated on 17-Apr-2023 15:09:34

603 Views

Calendars are an essential feature in any web application or website that deals with dates and events. A well-designed calendar can help users easily visualize and manage their schedules, while a poorly designed calendar can be frustrating to use and lead to confusion. jQuery EasyUI is a popular JavaScript library that provides a wide range of UI components, including a calendar component that can be easily integrated into web pages. In this article, we will discuss how to design a calendar for a web page using jQuery EasyUI. Methods Step 1: Install jQuery EasyUI The first step is to install ... Read More

How to call web services in HTML5?

Asif Rahaman
Updated on 17-Apr-2023 16:58:17

2K+ Views

Introduction Calling web services is one of the most commonly used services over the web. It refers to the way of communicating with the software systems. This communication can be between the clients with the server, peer-to-peer, etc. HTML5, the latest version of HTML, provides A LOT OF WAYS LIKE XMLHttpRequest object, APIs like Axios and fetch, WebSockets, etc. This API allows the users to get dynamic static, real-time, or dynamic content depending upon the requirement. In this article, we shall learn how to call web services by using different methods like calling APIs, web sockets, etc. XMLHttpRequest is a ... Read More

How to calculate the sum of radio button values using jQuery?

Asif Rahaman
Updated on 17-Apr-2023 14:43:23

800 Views

How To Use jQuery To Calculate The Sum Calculating the sum of radio button values using jQuery involves selecting the radio buttons and attaching a click event listener. When a radio button is clicked, the value of each selected radio button is retrieved and added together. The resulting sum is then displayed in a designated element using jQuery's text() method. This process allows for the easy calculation and display of the sum of radio button values on a web page. Example $(function() { ... Read More

How to build custom form controls using HTML?

Asif Rahaman
Updated on 17-Apr-2023 14:35:11

421 Views

Forms components are one of the essential parts of web applications. The forms are used in the contact us pages, application page, etc. HTML offers us many different ways and options to customize the setups. This includes textarea, input, checkboxes, etc. This article will explain how to build a custom form control using HTML. Custom From Control Using HTML and CSS We can use only HTML and CSS to create a custom form control. However, more is needed to interact with the backend application with JavaScript. But still, we can create all the front-end effects using only HTML and ... Read More

How to break a line without using br tag in HTML / CSS?

Asif Rahaman
Updated on 18-Sep-2024 12:33:13

4K+ Views

To break a line without using br tag in HTML/CSS, is useful where you want space between elements, but don't want to add a new line of text. In this article, we will be discussing two different approaches to break line without using br tag. We are having some textual content in our HTML document in this article, our task is to break line without using br tag in HTML/CSS. Approaches to Break Line Without br Tag Here is a list of approaches to break a line without using br tag in HTML/CSS which we will be discussing in this ... Read More

How to blend elements in CSS?

Asif Rahaman
Updated on 17-Apr-2023 14:30:05

311 Views

Introduction Blending elements in CSS is a technique used to create interesting visual effects and enhance the design of a web page. With the mix-blend-mode property in CSS, you can control how an element blends with the content below it. In this article, we'll explore how to use mix-blend mode to blend elements in CSS. Understanding Mix-Blend-Mode mix-blend-mode is a CSS property that allows you to set the blending mode for an element. Blending modes determine how two elements blend together, with different modes producing different visual effects. By default, an element in CSS will have a blending mode of ... Read More

How to automatically transfer visitors to a new web page?

Asif Rahaman
Updated on 17-Apr-2023 14:26:01

1K+ Views

As a website owner or developer, there may be times when you need to automatically transfer visitors to a new web page. Whether it's because you've moved a page to a new URL or want to redirect visitors to a different section of your site, there are a few different methods you can use to achieve this. In this article, we'll explore the different types of redirects you can use to automatically transfer visitors to a new web page, and provide examples of how to implement each one. Meta Refresh Redirects One of the easiest ways to redirect visitors to ... Read More

Advertisements