views:

435

answers:

2

Can anyone know the link for loading jquery-ui-1.7.2.custom.min from j query site like

  <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"&gt;&lt;/script&gt;.

what are all the .js files needed for jquery tab.

A: 

You need to make sure that you include the tabs script with your custom build. To do this go to http://jqueryui.com/download and tick the 'tabs' checkbox.

This will out put a zip file containing images, css and js files.

Next, attach the custom jQuery UI file, aswell as the jQuery file and the relevant CSS files.

Then visit http://jqueryui.com/demos/tabs/ and check out the source for that demo (click 'view source'). It'll give you the mark up needed to create the tabs.

dotty
+1  A: 

You may use google api to load jquery:

<script src="http://www.google.com/jsapi"&gt;&lt;/script&gt;
<script>
   google.load("jquery", "1.3.2");
   google.load("jqueryui", "1.7.2");
</script>
jerjer