--- /dev/null
+<dl class="tabs" data-tab data-options="deep_linking: true">
+ <dd class="active"><a href="#tabs-deeplink-1">Tab 1</a></dd>
+ <dd><a href="#tabs-deeplink-2">Tab 2</a></dd>
+</dl>
+<div class="tabs-content">
+ <div class="content active" id="tabs-deeplink-1">
+ <p>First panel content goes here...</p>
+ </div>
+ <div class="content" id="tabs-deeplink-2">
+ <p>Second panel content goes here...</p>
+ <p id="tabs-deeplink-content-2">Test content</p>
+ </div>
+</div>
***
+### Deep linking to tabs or tab contents
+
+The tabs Foundation component can parse the location hash value and open the corresponding tab content pane. If the location hash maps to an element ID within a tab content pane, then the appropriate tab will become active and the browser window will scroll to the specified element. If you do not want to scroll to the specified element then set `data-options="scroll_to_content: false"`.
+
+In the following example, deep linking is enabled. If the location hash is `#tabs-deeplink-2` then the second tab will become active. If the location hash is `#tabs-deeplink-content-2` then the second tab will become active, and the browser will scroll to the paragraph tag with ID, tabs-deeplink-content-2.
+
+<!-- {{> examples_tabs_deep_linking}} -->
+
+***
+
### Callbacks
There are two ways to bind to callbacks in your tabs.