I would like to expand the link in the tab screen of jQuery uitab.

Asked 1 years ago, Updated 1 years ago, 102 views

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?

javascript jquery

2022-09-30 21:10

1 Answers

What should I do to load a link into this tab?

Use the .load() function

$("#tabA").load("test2.html";
http://api.jquery.com/load/


2022-09-30 21:10

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.