I have this working, but I am wondering is this normal practice.
<button vacation="2" type="button" class="delete" id="vc-2"><i class="icon-static"></i></button>
I need custom attributes. I made custom html attribute called vacation. I am accessing it via event, something like this:
var vacation = parseInt(e.currentTarget.attributes[0].value); //Zero, since this is the first attribute.
This works, but I am interested is this the best practice? I would like to avoid using HTML5 data- attribute if possible.