Tab help after show/hide.
- <a href="#" id="link1" onclick="$('#showhide1').show('slow'); $('#link1').hide(); $('#link2').show();">Learn More</a>
- <a href="#" id="link2" style="display:none;" onclick="$('#showhide1').hide('slow'); $('#link2').hide(); $('#link1').show();">Hide</a>
- <br/>
- <a href="#" id="link3" onclick="$('#showhide1').show('slow'); ">See Offer Details</a>
- <div class="wrap" id="showhide1" style="display:none;">
- <ul class="tabs">
-
- <li class="left"><a href="#">Signature Digital TV</a></li>
- <li><a href="#">Internet</a></li>
- <li><a href="#">Phone</a></li>
-
- </ul>
Using the existing code, I'd like to have "See Offer Details", in addition to showing the "showhide1" div, also switch over to the "Phone" tab. How should I go about doing this?