
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 8591 Articles for Front End Technology

822 Views
When designing a form for a website, it's important to consider the user experience and make it as easy as possible for users to fill out the form. One way to do this is by grouping related elements together so that users can quickly scan and fill out the form. In this blog post, we'll discuss how to group related elements in a form using HTML. What is Grouping in HTML Forms? Grouping in HTML forms involves grouping related form elements together, such as radio buttons, checkboxes, and text input fields. By grouping related elements together, you can make it ... Read More

2K+ Views
When displaying data in an HTML table, it is often useful to group the header content of the table to provide more context to the data being displayed. Grouping header content can make it easier for users to understand the relationships between the data and to identify patterns or trends. In this article, we'll discuss several methods for grouping header content in an HTML table using HTML5. Method 1: Using the and Elements The most straightforward way to group header content in an HTML table is to use the and elements. The element is used ... Read More

281 Views
When working on web development projects, there are often scenarios where you need to give a div tag the full height of the browser window. This can be particularly useful when creating full-page layouts, hero sections, or elements that need to span the entire vertical space. However, achieving this desired effect using CSS can be a bit tricky due to the nature of the CSS Box Model and the default behavior of height properties. In this article, we will explore different techniques to give a div tag 100% height of the browser window using CSS. We'll discuss the various CSS ... Read More

155 Views
Manipulating the DOM is an essential part of web development, and jQuery is a popular library that makes it easy to traverse the HTML DOM tree and select or modify elements based on their relationship with other elements. In this blog post, we will explore how to use jQuery to get or set elements based on their closest parent element that matches the specified selector. Using the Closest() Method The closest() method in jQuery is used to get the first element that matches the specified selector, searching through the element itself and its ancestors in the DOM tree. Here's an ... Read More

1K+ Views
Nowadays, creating websites that provide a seamless experience across different devices is very important. Responsive web design plays a pivotal role in ensuring that our websites adapt to various screen sizes and orientations. One common requirement in responsive design is the ability to hide certain HTML elements specifically in mobile views. This is where jQuery steps in. In this article, we will explore how to hide an HTML element in mobile view using jQuery. We will learn how to detect viewport width using jQuery, and leverage this information to conditionally hide elements based on the device's screen size. By the ... Read More

8K+ Views
When working with dynamic web pages, it's often necessary to hide certain HTML elements based on specific conditions or user interactions. One common approach is to assign classes to these elements and then dynamically hide them using JavaScript. This provides a flexible and efficient way to control the visibility of elements without modifying the HTML structure. In this article, we will explore how to hide HTML elements by class using JavaScript. We'll discuss the importance of dynamically hiding elements, understand the concept of HTML classes, and learn different methods to select elements by class using JavaScript. We will then dive ... Read More

238 Views
If you have a lot of footer content on your website, it can be helpful to group it together in the form of a table. This can make the content easier to read and navigate, and can also provide a more structured and organized look to your website. In this article, we'll look at how to group footer content in the form of a table using HTML, CSS, and JavaScript. Grouping Footer Content Using HTML To group footer content in the form of a table using HTML, you can use the element along with the appropriate table-related elements such ... Read More

349 Views
The HTML DOM TableRow.insertCell() method is used to insert a new cell(s) () into a table row () and returns a reference to the cell. This method accepts a single parameter "index" (cell index of the new cell); If the index value is provided as -1 or equal to the number of cells, the new cell will be inserted as the last cell in the row. If the index value is provided as 0, the new cell will be inserted at the first position. If we do not provide the index, by default, it will be -1. Syntax Following is ... Read More

5K+ Views
XML is also a markup language which stands for Extensible Markup Language, designed especially for web documents. It defines a set of rules for encoding documents in a format that is both human-readable and machine-readable allowing developers to create custom tags. In this article we are having an XML file and our task is displaying XML Using CSS. Steps for Displaying XML using CSS We can use CSS properties to style the content present in the XML document. Following are the steps for displaying XML using CSS. Create an .xml file and add your code ... Read More

6K+ Views
Social media platforms that focus solely on employment allow users to create an account and will be asked to upload the necessary documents so that the job recruiters can analyze them. To collect the documents from the user, these websites will provide an "Upload file" or "Choose file" option in their user details form; and they accept only particular file types such as ".pdf", ".jpg", ".png", etc. This process is called file validation and it can be done using JavaScript. In this article, we are going to design an option that validates the file types using JavaScript. To do so, ... Read More