jquery - Why does moving my script references to the bottom of _SiteLayout.cshtml cause the tabs to no longer work? -


i'm using jquery-ui tabs in site. i've got this:

<script src="~/scripts/jquery-2.0.0.min.js"></script> <script src="~/scripts/jquery-ui-1.9.2.min.js"></script> <script type="text/javascript" src="../fancybox/jquery.fancybox.pack.js"></script> <script src="~/scripts/modernizr-2.6.2.js"></script> 

...and works fine, when i, suggested performance reasons, move bottom of page (after html, above jquery "ready" function), no longer works - nav links bland uls.

if performance enhancement drop script down bottom of page, how can , still have ui work should?


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -