Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@joemsak
Created October 22, 2012 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save joemsak/3932540 to your computer and use it in GitHub Desktop.
Save joemsak/3932540 to your computer and use it in GitHub Desktop.
// blah
$(this).showHint();
});
jQuery.fn.showHint = function(){
var $hints = $('#resource-hints'),
$data = $hints.data('content');
$hints.empty().html($data[$(this).val()]);
};
// blah
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment