How to pass a query string (? Id = avalue) with each of the following tabbed links below. I am trying to open external content in tabs (so that it works fine), but I could not pass the parameter with the urls. The value for the parameter will be the same for each link.
My functioning code:
<script type="text/javascript">
$(function() {
$("#tabs").tabs({spinner:'<b>Retrieving Data...</b>'});
});
</script>
<div id="tabs">
<ul>
<li><a href="table.aspx"><span>Introduction</span></a></li>
<li><a href="RequestActionUpdate.aspx"><span>Update</span></a></li>
<li><a href="tabstesttarget.aspx"><span>Target</span></a></li>
<li><a href="table.aspx" ><span>View History</span></a></li>
</ul>
</div>
Any help you can offer me will be greatly appreciated.
Thank you in advance
user186423
source
share