Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] How to validate all the text area fields in a div Reply To: How to validate all the text area fields in a div

#149660
gowda24
Participant

I solved the issue by using this code.

if($('#Tile').find(textarea[value!=""]).length == 4)
which evaluates only if all textarea fields are filled.

Thanks jamygolden and paulie for the replies.