Markup
<a
class="example"
href="#"
data-options="speed: 500;
easing: easeInOutCubic;
offset: 0;
updateURL: false";
>
link
</a>
JavaScript
var item = document.querySelector('.example');
var options = getDataOptions( item ? item.getAttribute('data-options') : null );
console.log(options);
// Returns: Object{speed: 500, easing: easeInOutCubic, offset: 0, updateURL: false}
option.split(':') split your option too, if you have a link for example: (http**:**//example.com). Maybe you have an idea...