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;
Était-ce utile?

La solution

Try:

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

Autres conseils

use:

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

Working Demo

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top