Skip to content

Instantly share code, notes, and snippets.

@EkoJR
Created October 12, 2017 09:10
Show Gist options
  • Save EkoJR/836deab9e56b706c01610ee1bdd87094 to your computer and use it in GitHub Desktop.
Save EkoJR/836deab9e56b706c01610ee1bdd87094 to your computer and use it in GitHub Desktop.
tooltip html rendering
jQuery( document ).ready( function($) {
function apl_init_tooltips() {
jQuery( '.apl-tooltip' ).tooltip({
// content: function( callback ) {
// //callback( $( this ).prop('title').replace( '(<br([\s]?[\/]?)?>)', '<br />' ) );
// }
content: function( callback ) {
callback( $( this ).prop( 'title' ) );
}
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment