I am currently developing a web application with 4 tabs. Each tab includes a side menu (created using jQuery) and the rest of the space is divided into two sections: top div and bottom div (a table with two columns - column 1 contains the side menu, and column 2 contains top div + bottom div). To load the contents of div xyz into the top div from another page abc.html when clicking on a specific link in the side menu, I use the following code:
$("#topdiv").load("contents/abc.html #xyz")
However, there seems to be an issue where sometimes the tabs within #xyz do not display correctly in #topdiv. Instead of appearing as tabs, they are shown as a list. I am using $("#___").tabs() to create the tabs. Could anyone provide assistance? Unfortunately, I cannot upload images as I do not have enough reputation on Stack Overflow. If you provide your email address, I can send images showing the current status of the page and how it needs to be designed. Below is a snippet of my code:
[
// Code snippet here
]
Please note that while the div '#mainmenu' appears in a tab format, the 'innertabs' with the class 'tabs' do not display properly within #topdiv. They show up as lists with their content displayed below them.