Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you check if an element is empty?



How do you check if an element is empty?..

Answer / chaitanya

There are 2 ways to check if element is empty or not. We can check using ":empty" selector.

Hide Copy Code

$(document).ready(function(){

if ($('#element').is(':empty')){

//Element is empty

}

});

And the second way is using the "$.trim()" method.

Hide Copy Code

$(document).ready(function(){

if($.trim($('#element').html())=='') {

//Element is empty

}

});

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More jQuery Interview Questions

How do I check if an element is hidden in jQuery?

0 Answers  


What is the difference between jquery and javascript?

0 Answers  


Explain all the ways to include jquery in a page?

0 Answers  


Explain .siblings() method in jquery?

0 Answers  


What is the use of noconflict() method in jquery?

0 Answers  


What is jquery and what are the advantages?

0 Answers  


Is jQuery is a replacement of JavaScript?

0 Answers  


What is the difference between onload() and document.ready() function used in jquery?

0 Answers  


What is the use of clone method in jQuery?

0 Answers  


How does caching helps and how to use caching in jQuery?

1 Answers  


What are selectors in jquery mean ?

0 Answers  


How can events be prevented to work after an ajax request?

0 Answers  


Categories