dando um atributo HTML Element Own usando JS
element.hasAttribute('foo');
element.getAttribute('foo');
element.setAttribute('foo', value);
element.removeAttribute('foo');
Innocent Ibex