JSFiddle - React, Tailwind, and code Playground
JavaScript
//$('body').foo();
// errorUncaught TypeError: Object [object Object] has no method 'foo'
$.fn.foo = function () {
console.log('batman');
};
$('body').foo(); // batman
//$('body').foo();
// errorUncaught TypeError: Object [object Object] has no method 'foo'
$.fn.foo = function () {
console.log('batman');
};
$('body').foo(); // batman