- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
What is $(document).ready() method in jQuery?
The ready() method is used to make a function available after the document is loaded. Whatever code you write inside the $(document ).ready() method will run once the page DOM is ready to execute JavaScript code.
Example
You can try to run the following code to learn how to use $(document).ready() method in jQuery:
<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
- What is the difference between $(window).load() and $(document).ready() functions in jQuery?
- What is $(document).ready() equivalent in JavaScript?
- When to use $(document).ready() and when $(window).load() in jQuery?
- How does $('iframe').ready() method work in jQuery?
- How to check if a document is ready in JavaScript?
- What are jQuery events .load(), .ready(), .unload()?
- Need Selenium to wait until the document is ready
- jQuery ready() with Examples
- What is jQuery.ajaxSetup() method in jQuery?
- What is $(window).load() method in jQuery?
- What is the jQuery destructive method end()?
- jQuery is() Method
- What does jQuery.serialize() method do in jQuery?
- What e.preventDefault() method really does in jQuery?
- What does html() method do in jQuery?

Advertisements