Skip to content

Instantly share code, notes, and snippets.

@mrmanc
Created July 31, 2012 10:15
Show Gist options
  • Save mrmanc/3215826 to your computer and use it in GitHub Desktop.
Save mrmanc/3215826 to your computer and use it in GitHub Desktop.
safe data URI
function safeGetDataAttribute(element, dataName){
if (element.dataset){
return element.dataset[dataName];
}
return element.getAttribute('data-' + dataName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment