diff --git a/index.html b/index.html index a5fbad0..35b32f7 100755 --- a/index.html +++ b/index.html @@ -32,7 +32,7 @@

Project Worksheet

  1. - +
  2. diff --git a/js/fullscreenForm.js b/js/fullscreenForm.js index 0691426..f57d1f6 100644 --- a/js/fullscreenForm.js +++ b/js/fullscreenForm.js @@ -305,6 +305,12 @@ self.ctrlFldStatus.removeChild( self.ctrlFldStatusNew ); classie.remove( self.ctrlFldStatus, 'fs-show-' + self.navdir ); } + + // Making focus only for direct input,textarea child thus will skip radio buttons. + var temp=document.querySelector('.fs-current > input,.fs-current > textarea'); + if(temp!=null){ + temp.focus(); + } } self.isAnimating = false; };