I am currently in the process of creating a modal tabbed pane in bootstrap following the instructions provided in this guide. You can view the code and functionality on this fiddle.
$(document).on("click","#tabs a",function(event)
{
alert("!!!");
event.preventDefault();
$(this).tab('show');
})
Unfortunately, I am encountering an issue where the content within the tabs is not being displayed. Where have I gone wrong in my implementation? Am I incorrectly activating the tabs or is there something else that needs to be adjusted?