DEV Community

Dharan Ganesan
Dharan Ganesan

Posted on

Day 62: Global Attributes

What are Global Attributes? πŸ€”

Global attributes, as the name suggests, are attributes that can be applied to virtually any HTML element. They provide common properties that are useful across different types of elements. Let's explore some of the most important global attributes:

1. id - The Identifier πŸ†”

The id attribute provides a unique identifier for an element on a page. This attribute is like giving an element a name tag, making it easily targetable by JavaScript and CSS.

<button id="submit-button">Submit</button>
Enter fullscreen mode Exit fullscreen mode

In JavaScript, you can easily manipulate this button:

const button = document.getElementById('submit-button');
button.addEventListener('click', () => {
    // Your code here
});
Enter fullscreen mode Exit fullscreen mode

2. class - The Classifier 🎩

The class attribute allows you to assign one or more CSS classes to an element. This is crucial for applying styles consistently across multiple elements.

<p class="highlighted">This is important text.</p>
Enter fullscreen mode Exit fullscreen mode

In your CSS:

.highlighted {
    background-color: yellow;
}
Enter fullscreen mode Exit fullscreen mode

3. style - Inline Styling 🎨

The style attribute lets you apply inline CSS styles directly to an element. This is handy when you need specific styling for a single element.

<div style="color: blue; font-size: 18px;">Styled Div</div>
Enter fullscreen mode Exit fullscreen mode

4. data-* - Custom Data Attributes πŸ“¦

Custom data attributes are a powerful way to store extra information with an element. They start with "data-" followed by a meaningful name. These attributes are frequently used to store data for JavaScript to use.

<button data-product-id="12345">Add to Cart</button>
Enter fullscreen mode Exit fullscreen mode

In JavaScript:

const button = document.querySelector('button');
const productId = button.getAttribute('data-product-id');
Enter fullscreen mode Exit fullscreen mode

5. aria-* - Accessibility Attributes β™Ώ

Attributes starting with "aria-" are used to enhance the accessibility of web content for people with disabilities. These attributes provide valuable information to assistive technologies.

<button aria-label="Close" aria-describedby="tooltip">X</button>
Enter fullscreen mode Exit fullscreen mode

6. title - Tooltip Text πŸ“

The title attribute specifies extra information about an element. It often appears as a tooltip when you hover over the element.

<img src="avatar.jpg" alt="User Avatar" title="John Doe">
Enter fullscreen mode Exit fullscreen mode

7. contenteditable - Editable Content πŸ“

The contenteditable attribute turns an element into an editable field, making it suitable for building web applications with rich text editing features.

<div contenteditable="true">This text can be edited.</div>
Enter fullscreen mode Exit fullscreen mode

8. lang - Multilingual Support 🌐

Building a multilingual website? The lang attribute helps screen readers and search engines understand the language of your content:

<p lang="fr">Bonjour le monde!</p>
<p lang="es">Hola, mundo!</p>
Enter fullscreen mode Exit fullscreen mode

9. tabindex - Navigational Control πŸš€

Want to control the tab order for keyboard navigation? Use tabindex:

<input type="text" tabindex="1" />
<input type="submit" tabindex="2" />
Enter fullscreen mode Exit fullscreen mode

This ensures that users navigate through your form in a logical order.

10. hidden (πŸ™ˆ Hide and Seek)

The hidden attribute hides an element from the user, providing a way to control visibility dynamically.

<p hidden>This paragraph is hidden.</p>
Enter fullscreen mode Exit fullscreen mode

11. accesskey (⌨️ Keyboard Shortcuts)

accesskey assigns a keyboard shortcut to an element, facilitating navigation for users who prefer using the keyboard.

<button accesskey="H">Home</button>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)