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
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:
<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!
Advertisements