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.
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(); In today’s fast-paced and highly competitive marketing environment, even the most creative campaign is only…
We are NYC moving firm. Are you planning a flat move? Maybe a distance or…
Mobile devices, unlike desktops and laptops, can not be handled by dozens or hundreds of…
Augmented Reality- An immersive experience for the learners! Learning and education aren’t the same as…
On special days like birthdays and weddings, we all like to celebrate our loved ones…
A web application is different from a regular mobile or desktop application as it runs…