Mam następny html:
<span data-typeId="123" data-type="topic" data-points="-1" data-important="true" id="the-span"></span>
Czy można pobrać atrybuty zaczynające się od data-
i użyć ich w kodzie JavaScript, takim jak poniższy kod? Na razie null
w rezultacie otrzymuję .
document.getElementById("the-span").addEventListener("click", function(){
var json = JSON.stringify({
id: parseInt(this.typeId),
subject: this.datatype,
points: parseInt(this.points),
user: "H. Pauwelyn"
});
});