Possible Duplicate:
Jquery Tabs- Load Contents only when clicked
Hi,
I am relatively new to jquery and web development. I am using jquery tabs to create tabs. here is the code
<div id="tabs-1">
<%@ include file="page1.jsp"%>
</div>
<div id="tabs-2">
<%@ include file="Page2.jsp"%>
</div>
<div id="tabs-3">
<%@ include file="Page3.jsp"%>
</div>
</div>
and javascript is
each and every page is loading before clicking the tab but i want them to load dynamically
So can you please help me get out of this mess :)