programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

how to check the tag exists in a div jquery

if($('#my-div a').length) {

if($('#my-div a').length) {
// anchor tag exists in my-div
} else {
// anchor tag not exists in my-div
}

//Here {my-div} is the div name