/** * Internet Explorer Check * * Hides the donation form and displays a non-compatible browser message if the browser is IE. * This has to be separate and placed before the donation code or IE will complain * * */ var ua = window.navigator.userAgent; var msie = ua.indexOf('MSIE '); var trident = ua.indexOf('Trident/'); if (msie > 0 || trident > 0) { $('.adfFormDisplay').html('You are currently using Internet Explorer. This browser will no longer be supported and has been replaced by Microsoft Edge. We recommend using a different browser such as:

You may also contact us to donate over the phone.
'); }