iPhone 6 : jQuery(window).height() .width() dont work one bit.. fix included.

iPhone 6 : jQuery(window).height() .width() dont work one bit.. fix included.

Was testing my seductiveapps.com software on iPhone 6 recently and found that my dialog resizing routines worked but not the background resizing which uses jQuery(window).width() and .height()..
Well, it worked, but only after changing orientation on the damn thing once or twice..

This works from the start of the page's lifetime (not mine, found it a few years ago somewhere as browser-independent window width/height detection code) : var height = (window.innerHeight?window.innerHeight:document.documentElement&&document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight);