A client has a few machines set to different browser and document modes. This is affecting a Javascript function:
$(".jumpmenu").change(function() {
var val = $(this).val();
if (val != '') {
location.href=val;
}
});
The function does not run when this is the case. I have set my IE to the same and can confirm that the change does not happen.
My first question is why would an IT department set the browser and document modes differently.
Secondly is there anything I can do to quickly fix the problem without making them change their doc and browser modes?
regards.