Skip to content

Instantly share code, notes, and snippets.

@djanix
Created April 13, 2012 17:17
Show Gist options
  • Save djanix/2378457 to your computer and use it in GitHub Desktop.
Save djanix/2378457 to your computer and use it in GitHub Desktop.
js -> convert percent to number
function convertPercentToNumber(el) {
if (el.charAt(el.length-1) == '%') {
return el.slice(0, -1)/100*duration;
} else {
return el;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment