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 |
How to check or uncheck all checkboxes using jquery?
How to add or remove classes to an element in jquery?
Which sign is used as a shortcut for jQuery?
What is the difference between $.map and $.grep in jQuery?
Is jQuery is a JavaScript or JSON library file?
What is the difference between event.stopPropagation and event.stopImmediatePropagation?
How can I select 20th div with jquery?
Can you please explain the difference between javascript and jquery? : jquery mobile
List browser related issues for jquery?
How to select class in jquery?
What is jQuery code to select all links in first paragraph?
How can you apply a style on an element using jQuery?