Bootstrap で別のタブに切り替えると、ユーザーは常に上部のタブ コンテンツを見始めます。タブに戻るときに、ユーザーが以前見ていた場所にスクロールする方法があるかどうかを知りたいです。
詳細:
タブのリストを次のように定義しました。
<ul id="main_tab" class="nav nav-tabs">
<li class="active"><a href="#users_tab_content" data-toggle="tab">Users</a></li>
Then there are more <li> values under the <ul>.
Then the content starts like so:
<div id="main_tab_content" class="tab-content">
<div class="tab-pane fade in active" id="users_tab_content">
Of course, with more <div> content tabs under the main <div>.