Value | Description |
some value | Specifies the value of the attribute (as a string) |
Data attributes were introduced in HTML5 which is supported by all modern browsers, but older browsers before HTML5 don’t recognize the data attributes.
However, in HTML specifications, attributes that are not recognized by the browser must be left alone and the browser will simply ignore them when rendering the page.
Web developers have utilized this fact to create non-standard attributes which are any attributes not part of the HTML specifications. For example, the value
attribute in the line bellow is considered a non-standard attribute because of the specifications for the <img>
tag don’t have a value
attribute and it is not a global attribute:
<img src="sample.jpg" value="test" />
This means that although data attributes are not supported in older browsers, they still work and you can set and retrieve them using the same generic JavaScript setAttribute
and getAttribute
methods, but you cannot use the new dataset
property which is only supported in modern browsers.
HTML5 data-*
attributes provide a convenient way to store data in HTML elements. The stored data can be read or modified using JavaScript.
<div data-submitted="yes" class="user_profile"> … some content … </div>
data-
, i.e. the name of the data attribute comes after the data-
part. Using this name, the attribute can be accessed. json
) can be stored using data- attributeJSON (JavaScript Object Notation) is a lightweight data-interchange format widely used in web development. At…
AJAX (Asynchronous JavaScript and XML) is a powerful technique used in modern web development that…
Introduction After successfully optimizing your website for speed, it's essential to maintain and build upon…
Securing your WordPress folders is crucial to safeguarding your website from unauthorized access and potential…
Creating a file upload feature with a circular progress bar involves multiple steps. You'll need…
Integrating WP Rocket with AWS CloudFront CDN helps to optimize and deliver your website content…