- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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 jQuery library function?
Calling a JavaScript library function is quite easy. You need to use the script tag. As almost everything we do when using jQuery reads or manipulates the document object model (DOM), we need to make sure that we start adding events etc. as soon as the DOM is ready.
If you want an event to work on your page, you should call it inside the $(document).ready() function. Everything inside it will load as soon as the DOM is loaded and before the page contents are loaded.
To do this, we register a ready event for the document as follows:
$(document).ready(function() { // do stuff when DOM is ready });
To call upon any jQuery library function, use HTML script tags:
<html> <head> <title>jQuery Function</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function() {alert("Hello, world!");}); }); </script> </head> <body> <div id = "mydiv"> Click on this to see a dialogue box. </div> </body> </html>
- Related Articles
- How to call jQuery function with JavaScript function?
- How to call a jQuery function after a certain delay?
- How to call a jQuery plugin function outside the plugin?
- How to make a jQuery function call after “X” seconds?
- How to call a function inside a jQuery plugin from outside?
- How to avoid jQuery function conflict with any other JavaScript library
- How to call a Java function inside JavaScript Function?
- How to call a function in JavaScript?
- How to call a jQuery plugin without specifying any elements?
- How to call a JavaScript function on click?
- How to call a JavaScript function from C++?
- How to Call a Lua function from C?
- How to call a JavaScript function in HTML?
- How to call a function that returns another function in JavaScript?
- How to delay a JavaScript function call using JavaScript?

Advertisements