Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
あるタブから別のタブに切り替えるときに、JqueryタブでfadeIn fadeOut効果をトリガーする方法
activateを使用できます。新しいタブがアクティブになるとトリガーされます:)
$(function() { $( "#tabs" ).tabs({ activate: function( event, ui ) { ui.newPanel.hide().fadeIn(500); } }); });
ここにあなたを助けるフィドルがあります