Reputation: 5041
I have this line in my HTML:
<a href="test.xml" target="_blank">Click here</a>
When the user click:
My question:
How can I force the IE/safari to download the xml file like all other browsers?
Upvotes: 0
Views: 1668
Reputation: 123
It will open in a new tab if you have the
target="_blank"
remove that and just use
<a href="test.xml">Click here</a>
Upvotes: 0
Reputation: 461
Its Browser property, you can't change its behavior. Its upon browser how it render the code.
Upvotes: 2