I was wondering if it is possible to store multiple key/values inside a data-attr like:
<a href="#" data-social="network:facebook; socialId:123456789" id="facebook">Facebook</a>
and then when using them in my script just pick at them like $('#facebook').data('social.socialId'); or something like that instead of having to break each of them up into their own attribute?