Skip to content Skip to sidebar Skip to footer

Click() Works Fine In Chrome But Not In IE11

I'm testing the following piece of Javascript code on the Console before I include it into my application (I found it on SO) pom = document.createElement('a') pom.setAttribute('hre

Solution 1:

IE will try to open as a website, a better approach might be checking if window.navigator.msSaveBlob is present, and if is, Using this method to download the file


Post a Comment for "Click() Works Fine In Chrome But Not In IE11"