jQuery Examples

There are many features, built-in functions, and effects in jQuery and millions of associated examples. Some of the simple examples of jQuery are discussed below. Example1: <!DOCTYPE html> <html> <head> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <script> $(document).ready(function(){ $(“p”).click(function(){ $(this).hide(); }); }); </script> </head> <body> <p>Hello world</p> <p>If you don’t like me, click me away!</p> </body> </html> Example2: <!DOCTYPE … Read more

jQuery History

The jQuery project started back in 2005. jQuery now became a widely used technology, since its first release in January 2006. It was released at BarCamp NYC by John Resig. The development of jQuery was influenced by the release of CSS Query by Dean Edwards. jQuery is currently headed by Timmy Wilson. While a team … Read more

What is jQuery?

jQuery is a fast, small, lightweight, cross-platform, and feature-rich JavaScript library. jQuery provides various features that make web development very quick and easy. Some of the basic and unique features of jquery are listed below: Very fast and extensible. Versatile. Small and lightweight. Platform-independent. Easy to learn; coding style same as JavaScript. Provides cross-browser support; … Read more