Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Created March 16, 2012 15:51
Show Gist options
  • Save jlebrech/2050647 to your computer and use it in GitHub Desktop.
Save jlebrech/2050647 to your computer and use it in GitHub Desktop.
<a data-fetch="squareroot" data-param="9"><a/>
$(function(){
$("a[data-fetch~=squareroot]").each(function(){
param = $(this).attr("data-param");
$(this).html(Math.sqrt(param));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment