Twitter bootstrap - Focus on textarea inside a modal on click

后端 未结 13 792
执笔经年
执笔经年 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:14

    I don't know why, but the choosed solution doesn't work for me.. I use the following code snippet instead:

    $('#annul-modal').on('show', function() {
        setTimeout(function() {$('textarea:first', '#annul-form').focus();}, 400);
    });
    

    I know it isn't so pretty but at least it works.. Bootstrap v2.3.0

提交回复
热议问题