How to call a function inside a jQuery plugin from outside?


To call a function inside a jQuery plugin from outside, try to run the following code. The code updates the name with jQuery as an example using properties:

Live Demo

<html>
   <head>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $.fn.person = function(prop) {
            var defaults = $.extend({
               name: 'Amit'
            }, prop);
   
            // methods to be used outside of the plugin
            var person = {
               changeName: function(name) {
                  defaults.name = name;
               },
               getName: function() {
                  return defaults.name;  
               }
            };
            return person;
         };
         // set initial properties
         var person = $('#person').person({
            name: 'Sachin'
         });
         document.write('Initial name of person: ', person.getName());
         person.changeName('Amit');
         
         // printing new name
         document.write('<br>Changed name of person: ', person.getName());
      </script>
   </head>
   <body>
      <div id = "person">Changes done above!</div>
   </body>
</html>

Output

Initial name of person: Sachin
Changed name of person: Amit
Changes done above!

Amit D
Amit D

e

Updated on: 12-Jun-2020

587 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements