Skip to content

Instantly share code, notes, and snippets.

@NathalieLarsson
Created November 11, 2013 13:21
Show Gist options
  • Save NathalieLarsson/7413086 to your computer and use it in GitHub Desktop.
Save NathalieLarsson/7413086 to your computer and use it in GitHub Desktop.
Search for append on website
(function () {
var $__append__ = $.fn.append;
var matcher = '*';
$.fn.append = function () {
if (console && this.selector === matcher) console.log.call(console, { el: this, args: Array.prototype.slice.call(arguments) });
$__append__.apply(this, arguments);
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment