Say a HTML snippet like this:
<div a_example = "x" b_example = "y" class = "z"></div>
What is the proper way to get the corresponding properties of a_example and b_example in Javascript?
Can xpath do the job?
|
Say a HTML snippet like this:
What is the proper way to get the corresponding properties of a_example and b_example in Javascript? Can xpath do the job? |
|||
|
|
|
Use
Here's a working example. But, as has already been mentioned, you should really be using HTML5 |
|||
|
|
|
You should take a look at HTML5 data attributes, here is a useful article: http://html5doctor.com/html5-custom-data-attributes/ Reading data attributes from a tag is really easy, and a fallback is available for older browsers. An example from the article:
|
|||
|
|
If you are using jQuery, it is as simple as saying: HTML
Javascript:
|
|||
|
Some browsers will add all attributes as named properties of the DOM element, others will only add standard attributes. In both cases you can get non–standard attributes using It is common to use standard attributes and DOM properties and only use getAttribute where necessary as it is inconsistently implemented in different browsers. |
|||
|
|
|
I agree you should look at data attributes and better ways to do add non-standard attributes, but here's a 'raw' answer to your question, but I wouldn't treat this as universally supported (or advisable):
|
|||
|
|