Question

I have a form with radiobuttons and textfields.

I can store number of checked radiobuttons into a variable like this:

var $answeredRadiobuttons = $questions.find("input:radio:checked").length;

How can I store number of textfields that has text within them?

var $answeredTextfields = $questions.find("input:text").length;
Was it helpful?

Solution

Try:

var $answeredTextfields = $questions.find("input:text").filter(function(){
    return this.value !== "";
}).length;

OTHER TIPS

use:

var $answeredTextfields = $("input").filter(function() {
  return $(this).val() != "";
}).length;

Working Demo

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top