mirror of
https://github.com/jquery-validation/jquery-validation.git
synced 2025-12-20 09:11:40 +01:00
Revert "Core: Ignore readonly as well as disabled fields."
This reverts commit 9f4ba10ea7.
Closes #1383
Closes #1300
Ref #1261
This commit is contained in:
@@ -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 ) {
|
||||
|
||||
Reference in New Issue
Block a user