Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Web Development Articles
Page 16 of 801
HTML File Paths
A file path in HTML specifies the location of a resource (like images, videos, stylesheets, or scripts) within a website. File paths can be either relative (pointing to files in relation to the current document) or absolute (providing the complete URL to a resource). Understanding file paths is crucial for linking resources correctly, ensuring your website works properly across different environments, and maintaining organized project structures. Syntax Following are the different syntaxes for specifying file paths − Relative Path Syntax src="filename.jpg" src="folder/filename.jpg" src="../folder/filename.jpg" src="/folder/filename.jpg" Absolute Path Syntax src="https://www.example.com/images/filename.jpg" ...
Read MoreHTML for Attribute
The HTML for attribute establishes a connection between a element and a form control. When the for attribute's value matches the id of another element, clicking the label will focus or activate the associated control, improving accessibility and user experience. Syntax Following is the syntax for the HTML for attribute − Label Text To access the for attribute in JavaScript, use the htmlFor property − labelObject.htmlFor How the For Attribute Works The for attribute creates an explicit association between a label and a form element. This provides ...
Read MoreHTML isTrusted Event Property
The isTrusted event property is a read-only boolean property that indicates whether an event was triggered by a user action or programmatically by a script. This property is crucial for security purposes, allowing developers to distinguish between genuine user interactions and automated script-generated events. When an event is triggered by genuine user actions like clicks, keystrokes, or mouse movements, the isTrusted property returns true. However, when the same event is generated programmatically using JavaScript methods like click(), dispatchEvent(), or similar functions, it returns false. Syntax Following is the syntax to access the isTrusted property from an event ...
Read MoreHTML DOM Table caption Property
The HTML DOM table caption property is used to get or set the caption of an HTML table element. The caption provides a title or description for the table content and is typically displayed above the table. Syntax Following is the syntax for getting the caption property − tableObject.caption Following is the syntax for setting the caption property − tableObject.caption = captionObject Property Values The caption property accepts the following values − captionObject − A reference to the caption element object, or null if no caption exists. ...
Read MoreHTML DOM Table insertRow() Method
The HTML DOM table insertRow() method creates an empty element and inserts it at a specified position in a table. This method is useful for dynamically adding rows to existing tables without rebuilding the entire table structure. Syntax Following is the syntax for the insertRow() method − table.insertRow(index) Parameters The insertRow() method accepts the following parameter − index (optional) − A number specifying the position where the new row should be inserted. If omitted or set to -1, the row is appended at the end of the table. ...
Read MoreHTML DOM Table deleteRow() Method
The HTML DOM table deleteRow() method removes a specific row ( element) from a table. This method is useful for dynamically managing table content in web applications. Syntax Following is the syntax for the deleteRow() method − table.deleteRow(index) Parameters The method accepts one parameter − index − An integer that specifies the position of the row to delete. The index starts from 0. If the index is -1, it deletes the last row. If the index is out of range, an error occurs. Return Value This ...
Read MoreHTML DOM Table rows Collection
The HTML DOM Table rows Collection returns a collection of all elements in a table. This collection provides access to table rows for manipulation, counting, and retrieval operations using JavaScript. Syntax Following is the syntax to access the rows collection − tableObject.rows Where tableObject is a reference to a element obtained through methods like document.getElementById() or document.querySelector(). Properties of rows Collection The rows collection provides the following property to get information about the table rows − Property Description length Returns the number ...
Read MoreHTML DOM Table tBodies Collection
The HTML DOM table tBodies Collection returns a collection of all elements within a specific table element. This collection is live, meaning it automatically updates when elements are added or removed from the table. Syntax Following is the syntax to access the tBodies collection − tableObject.tBodies Where tableObject is a reference to an HTML table element obtained through methods like document.getElementById() or document.querySelector(). Properties The tBodies collection has the following property − Property Description length Returns the number of elements in ...
Read MoreHTML DOM Table tHead Property
The HTML DOM table tHead property returns the element of a table. This property provides access to the table's header section, allowing developers to manipulate or retrieve the header content programmatically. Syntax Following is the syntax for accessing the tHead property − table.tHead Return Value The tHead property returns − A HTMLTableSectionElement representing the element if it exists. null if the table has no element. Example − Accessing Table Header Following example demonstrates how to use the tHead property to access ...
Read MoreHTML DOM TableData colSpan Property
The HTML DOM TableData colSpan property returns and modifies the value of the colspan attribute of a table cell ( or ) in an HTML document. This property controls how many columns a cell spans across in a table. Syntax Following is the syntax for returning the colSpan property − object.colSpan Following is the syntax for setting the colSpan property − object.colSpan = number Property Values The colSpan property accepts a numeric value that specifies how many columns the cell should span. The default value is 1, meaning the ...
Read More