Skip to content

Instantly share code, notes, and snippets.

@nicinabox
Forked from joemsak/something.js
Created October 22, 2012 16:59
Show Gist options
  • Save nicinabox/3932558 to your computer and use it in GitHub Desktop.
Save nicinabox/3932558 to your computer and use it in GitHub Desktop.
$.fn.showHint = function() {
var $data = this.data('content');
return this.each(function(i) {
$(this).empty().html($data[$(this).val()]);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment