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

what does $("div") will select? : jquery mobile

0 Answers  


Which version of jquery file should be used?

0 Answers  


What is jquery and what are the advantages?

0 Answers  


Define "beforesend(xhr)" paremeter of jquery ajax method?

0 Answers  


Explain jquery $.ajax() method?

0 Answers  


How to read cookies in jquery?

0 Answers  


Does events are also copied when you clone any element in jQuery?

1 Answers  


When can jquery be used?

0 Answers  


Why are not some scripts and styles loading? : jquery mobile

0 Answers  


How to keep the submit text from showing with jquery mobile? : jquery mobile

0 Answers  


What is queue() in jquery? Use of queue() in jquery?

0 Answers  


Tell me how to check data type of any variable in jquery? : jquery mobile

0 Answers  


Categories