how to link to a specific tab and show its content from another html page..

3 replies · opened Jun 15, 2016

WwebdsgnJun 15, 2016

Hello,

I would like to know how to linke to a specific tab and show its content from another html page.

For example,
I would like to know **how to give a link ** in **index.html **page to be linked a tab of "menu 3" by showing its content in detail.html page.

Thank you always for your great support.

SSemicolon WebSTAFFJun 17, 2016

Hello,

This is Absolutely Possible. However we will need to use the .customjs Functionality for this. Follow the Steps below:

  1. Add the .customjs Class to the .tabs Element. Also make sure that the .tabs Element has a Unique HTML ID. Example:

	
		
- [Tab 1](#tab-1)
		
- [Tab 2](#tab-2)
		
- [Tab 3](#tab-3)
	

	

		
			This is Tab 1 Content
		
		
			This is Tab 2 Content
		
		
			This is Tab 3 Content
		

	
  1. Now Initialize the Tabs by adding the following JS Code at the bottom of the Page just after the js/functions.js JS File Linking:

	jQuery(document).ready( function($){
		$( "#tabs" ).tabs({
			show: {
				effect: "fade",
				duration: 400
			}
		});
	});

Now, you can simply add the Tab ID at the end of the URL: http://your-website.com/page.html#tab-2 .

This will definitely work fine. Let us know if we can help you with anything else or if you find any further issues.

WwebdsgnJul 12, 2016

Thanks for your reply but it didn't work for this portfolio tabs.

Would you please kindly provide script for this case?
I would like to show 2 articles from a link in another HTML page, and the first tab should be active color as well even though the 3rd tab is selected initially.
Question1 : How should I give a link in another HTML page in order to show each article for .pf-tab1 / .pf-tab2 / .pf-tab3 / .pf-tab4?
Questions2 : How can show the linked tab color active with above link? Now, it always shows 3rd tab active with class="activeFilter"

Thank you so much for your time and help.


	
- [TAB1](#)
	
- [TAB2](#)
	
- [TAB3](#)
	
- [TAB4](#)
	
- [Show All](#)

[

	
](#)

	
	
		
			Plan starting at
			$ 4.99
			TAB1
			ADD TO CART:
		
	
		
		
			Plan starting at
			$ 4.99
			TAB1
			ADD TO CART:
		
	

		
	
		
			Plan starting at
			$ 4.99
			TAB1
			ADD TO CART:
		
	
		
		
			Plan starting at
			$ 4.99
			TAB1
			ADD TO CART:
		
	
......

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard