Skip to content

Instantly share code, notes, and snippets.

@andreascarpello
Created March 19, 2015 08:51
Show Gist options
  • Save andreascarpello/091054a6873b8edcab8e to your computer and use it in GitHub Desktop.
Save andreascarpello/091054a6873b8edcab8e to your computer and use it in GitHub Desktop.
JQUERY CHECK FUNCTION EXIST
//http://stackoverflow.com/questions/20027715/jquery-check-function-exist
// TRUNCATE TEXT IF OVERFLOW
if (typeof $.fn.functionName != 'undefined' && $.isFunction($.fn.functionName)) {
$('element').functionName();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment