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.
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);
});