JSFiddle - React, Tailwind, and code Playground

by Felipe Alfaro

HTML

<input id="inputData" data-id="hola mundo">

JavaScript

Element.prototype.damnIt = function( data ) {
	alert( this.getAttribute('data-id') );
};


document.getElementById('inputData').damnIt('asd');