I am using the following external jquery files in my default.aspx page.
<script type="text/javascript" src="Scripts/jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="Scripts/jquery-ui-personalized-1.5.2.packed.js"> </script>
<script type="text/javascript" src="Scripts/DefaultTab.js"></script>
<script type="text/javascript" src="TooltipScript/jquery.js"></script>
<script type="text/javascript" src="TooltipScript/easyTooltip.js"></script>
<script type="text/javascript" src="Scripts/Validation.js"></script>
The first three scripts i have used for tabs. The next two are used for the tooltip plugin. The last script is used for performing validation on my default.aspx page. However my problem is that when i remove tooltip js from the page , then my tab works fine.But as soon as i include them again , tabs dont work. What could be the problem , what is the best way to refer to external js files. How should these js files be ordered inorder for all of them to work. Any help is much appreciated. Thanks