File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 89
89
/*
90
90
* Validate element values
91
91
*/
92
- $ ( this ) . find ( 'input,textarea' ) . each ( function ( ) {
92
+ $ ( this ) . find ( 'input,textarea,select ' ) . each ( function ( ) {
93
93
if ( ! ignoreInput ( $ ( this ) . attr ( 'name' ) , $ ( this ) . attr ( 'type' ) ) ) {
94
94
95
95
// memorize border color
@@ -358,14 +358,14 @@ jQueryFormHelper.validateBirthdate = function(val)
358
358
*/
359
359
jQueryFormHelper . validateDate = function ( val )
360
360
{
361
- // enklast m jliga...
361
+ // enklast m� jliga...
362
362
if ( val . match ( / ^ ( \d { 4 } ) \- ( \d { 2 } ) \- ( \d { 2 } ) $ / ) == null )
363
363
return false ;
364
364
365
365
var month = val . substring ( 5 , 8 ) ;
366
366
var day = val . substring ( 8 , 11 ) ;
367
367
368
- // skum fix. r talet 05 eller l gre ger parseInt r tt int annars f r man 0 n r man k r parseInt?
368
+ // skum fix. � r talet 05 eller l� gre ger parseInt r� tt int annars f� r man 0 n� r man k� r parseInt?
369
369
if ( month . indexOf ( '0' ) == 0 )
370
370
month = month . replace ( '0' , '' ) ;
371
371
if ( day . indexOf ( '0' ) == 0 )
You can’t perform that action at this time.
0 commit comments