1swfobject.registerObject("clippy.codeblock-1", "9");
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17<apex:page>
18 <A HREF="#" onClick="testGetPrimaryTabIds();return false">
19 Click here to get the primary tab IDs</A>
20
21 <apex:includeScript value="/support/console/26.0/integration.js"/>
22 <script type="text/javascript">
23 function testGetPrimaryTabIds() {
24 sforce.console.getPrimaryTabIds(showTabId);
25 }
26
27 var showTabId = function showTabId(result) {
28 //Display the primary tab IDs
29 alert('Primary Tab IDs: ' + result.ids);
30 };
31 </script>
32</apex:page>