UI Datepicker: using $(window).height()...
Hi,
another suggestion:
INSTEAD OF using twice these lines throughout the code:
var browserWidth = window.innerWidth ||
document.documentElement.clientWidth || document.body.clientWidth;
var browserHeight = window.innerHeight ||
document.documentElement.clientHeight || document.body.clientHeight;
USE:
var browserWidth = $(window).width();
var browserHeight = $(window).height();
, greets