Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to call a jQuery plugin without specifying any 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.
Advertisements
