Skip to content

Instantly share code, notes, and snippets.

@kweigand
Created June 2, 2014 18:34
Show Gist options
  • Save kweigand/5be39e3c0db0b0061710 to your computer and use it in GitHub Desktop.
Save kweigand/5be39e3c0db0b0061710 to your computer and use it in GitHub Desktop.
(function ($) {
Drupal.behaviors.appointment = {
attach: function(context, settings) {
//Begin my code
$(document).ready(function() {
$('p .help-block').hide();
$('p .help-block').append('<a id="descriptionhelp"><i class="fa fa-question-circle"></i></a>').click(function() {
$('p.help-block').toggle()
});
// End my code
}
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment