Revert "Core: Ignore readonly as well as disabled fields."

This reverts commit 9f4ba10ea7.

Closes #1383
Closes #1300
Ref #1261
This commit is contained in:
James
2015-01-28 09:46:49 -06:00
committed by Jörn Zaefferer
parent f582548015
commit e88f2ef98a
2 changed files with 1 additions and 7 deletions

View File

@@ -531,7 +531,7 @@ $.extend( $.validator, {
// select all valid inputs inside the form (no submit or reset buttons)
return $( this.currentForm )
.find( "input, select, textarea" )
.not( ":submit, :reset, :image, [disabled], [readonly]" )
.not( ":submit, :reset, :image, [disabled]" )
.not( this.settings.ignore )
.filter( function() {
if ( !this.name && validator.settings.debug && window.console ) {