jcadima
1/5/2017 - 5:09 PM

Tabbed content simulate click

Tabbed content simulate click


http://acitechnology.us/

<a href="http://acitechnology.us/aci-technology/#1481040552-1-23">System and Apparatus</a><br>
<a href="http://acitechnology.us/aci-technology/#1481040552-2-11">Measurements</a><br>
<a href="http://acitechnology.us/aci-technology/#1481040852537-2-7">Artery Diagram</a><br>
<a href="http://acitechnology.us/aci-technology/#1481041488133-3-10">Results</a><br>
<a href="http://acitechnology.us/aci-technology/#1481041498468-4-1">Cardiovascular</a><br>
<a href="http://acitechnology.us/aci-technology/#1481041510253-5-8">Applications</a><br>



<script>    
jQuery(function () {
  // grab the whole URL
	var sURL = window.document.URL.toString();
	// split into an array with # delimiter
	var arrParams = sURL.split("#");
	// get the second element in the array which is everything after #
	var tablink = arrParams[1] ;
	// console.log(arrParams[1]) ;
	// simulate a click with this specific href ID value,
	// this will open the tab
	jQuery("a[href=#" + tablink + "]").trigger('click');
		
});    
</script>