Thank you for your help.
I am currently creating a screen using jQuery uitab, but I don't know how to load the linked page in the tab screen.
We would like to move from clicking Tab A to loading test1.html into Tab A to clicking a href="test2.html" written in Test1.html to loading test2.html into Tab A.
There is no problem until I read test1.html, but I can't go beyond that...
For frames, etc., you can read the link destination in the same frame with a description such as <a href="xxx.html" target="_self">
, but how can you read the link destination in the same tab in the case of jQuery tab?
What should I do to load a link into this tab?
Use the .load() function
$("#tabA").load("test2.html";
http://api.jquery.com/load/
© 2024 OneMinuteCode. All rights reserved.