Call a jQuery Plugin Without Specifying Elements



To call a jQuery plugin without specifying any elements, use extend method. Here’s a snippet showing how to call a jQuery plugin without specifying any elements:

$.fn.extend({
  myFunction1: function(){...}
});

$.extend({
  myFunction2: function(){...}
});

Above, you can see we’re calling myFunction1 and myFunction2 without specifying any elements and using jQuery extend.

Updated on: 2019-12-04T07:02:17+05:30

256 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements