My Azure LAMP application experiences erratic page load speeds. Testing with this code shows inconsistent timings:
$(document).ready(function(){
console.log('initTime: ' + performance.now());
});
$(window).on('load', function(){
console.log('finishTime: ' + performance.now());
});
Looking for troubleshooting tips.
hey flyingeagle, im curious if its a caching or network hiccup issue. did u notice any slow xhr loads or backend delays? would love to hear more abt your experiance 
hey flyingeagle, maybe its not caching. azure setups can behave weird with async js loads. try running deeper perf logs to see if any stray scripts or network issues delaying the render, might give u better clues.