Categories: jQuery

jQuery tips and tricks

Share

In this article you will learn about few jQuery tips and tricks of interesting. Until you practice, you will not be able to be master of jQuery.

jQuery tips:

To check if checkbox is checked:

 if ($("#checkID").is(':checked')) {
 ...
 }

or

 if ($('#checkID').attr('checked')) {
 ...
 }

Check whether an element exists or not:

 if ($("#myDIV").length)
 {
 ...
 }

Block mouse right click:

 $(document).bind("contextmenu", function(e) {
 return false;
 });

Whether an element is visible or not:

 $("#myDIV").is(":visible");

To get the size of the element:

 $('element').length

Scroll the page to the div ID:

 $(document).scrollTop($('#myDIV').offset().top);

Replace an element by another:

 $("#oldID").replaceWith("<span>New content goes here...</span>");

Find an element by CSS class:

 $('body').find('.myclass');

Document.ready:

 $(document).ready(function() {
 ....
 });

Window resize:

 $(window).resize(function(){
 ...
 });

Find an element by attribute:

 $('#myDIV').find('span[class="sp"]').hide();

Recent Posts

Unveiling the Truth: Is the Spread of Sinus Infections a Myth or Reality?

Sinus infections, impacting approximately 31 million Americans each year, represent a significant health concern stemming…

2 hours ago

ARTIFICIAL INTELLIGENCE: Advantages And Disadvantages? Everything You Need to Know

Pros And Cons Of AI: Artificial Intelligence directly translates to conceptualizing and building machines that…

14 hours ago

Four common mistakes when picking an internet provider

We all live on the internet; we use it for everything. Thus, when it comes…

15 hours ago

What Is Commonly Misdiagnosed as Pink Eye: Understanding Eye Conditions and Their Symptoms

Introduction: Pink eye, or conjunctivitis, is a common eye condition characterized by redness and inflammation…

23 hours ago

Why Flexible Financing is the Future of Small Business

Small businesses are the backbone of the economy. Still, they often face daunting hurdles when…

1 day ago

Warm Comfort: Choosing the Best Hot Water Bottle for Cozy Nights

Introduction: As the chill of winter settles in or a bout of cold weather strikes,…

2 days ago