I have a problem with a web page using the function getyear(). The page is part of our parent company's website, but I don't have control over it. It is trying to validate an input date by comparing the four-digit year 2014 to checkdate.getyear() which returns 114. Obviously this will never succeed.
The answer I get from the parent company is 'Use IE Version 9 or less'. And under those situations, getyear() returns 2014.
Is there a way to get this javascript to work WITHOUT actually rolling back the browser to IE9? A way to run IE in 'ie9' mode? A way to inject code into the page?
I have very very little javascript knowledge so I'm looking for an easy-to-implement solution.