
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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.
Advertisements