Is there any specific order in which external CSS or scripts should be called on an ASPX page that can help reduce page load time?
ie
script type="text/javascript" src="../Includes/JavaScript/jquery.ui.tabs.js"
link href="../Includes/css/ui.all.css" rel="Stylesheet" type="text/css"
or
link href="../Includes/css/ui.all.css" rel="Stylesheet" type="text/css"
script type="text/javascript" src="../Includes/JavaScript/jquery.ui.tabs.js"
Or any other order?
source
share