JSFiddle - React, Tailwind, and code Playground
HTML
<input id="inputData" data-id="hola mundo">
JavaScript
Element.prototype.damnIt = function( data ) {
alert( this.getAttribute('data-id') );
};
document.getElementById('inputData').damnIt('asd');