Moin!
Wie lese ich also mein data-next der jeweiligen id aus?
So:
<!doctype html>
<html>
<head>
<title>Test</title>
<script>
$(document).ready(function () {
alert(document.getElementById('idValue').getAttribute("data-next"));
});
</script>
</head>
<body>
<form>
<INPUT TYPE=TEXT name="eingabe" id="idValue" data-next="dataNextValue" value="valeValue">
</form>
</body>
</html>
Jörg Reinholz