Twitter bootstrap - Focus on textarea inside a modal on click

后端 未结 13 760
执笔经年
执笔经年 2020-11-30 22:46

Just starting to play around with bootstrap and it\'s amazing.

I\'m trying to figure this out. I have a textarea for feedback inside a modal window. It works great.

13条回答
  •  [愿得一人]
    2020-11-30 23:13

    If your modal has the 'fade' property:

    This will work but you might have to adjust the duration of the timeout and obviously the IDs where needed:

    $("#ID-of-modal").on('show', function(event){
                    window.setTimeout(function(){
                      $(event.currentTarget).find('input#ID-of-input').first().focus()
                    }, 0175);
                  });
    

提交回复
热议问题