Skip to content

Instantly share code, notes, and snippets.

@lidaobing
Created June 13, 2012 15:01
Show Gist options
  • Save lidaobing/2924613 to your computer and use it in GitHub Desktop.
Save lidaobing/2924613 to your computer and use it in GitHub Desktop.
jQuery(function($) {
$("[data-role]").each(function() {
var $this = $(this);
var klass = $this.data("role");
if($this[klass]) {
$this[klass]($this.data());
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment