i trying download 1 csv file in html file anchor tag. getting downloaded .txt file. tried few things download attribute nothing working. please help
<a href="https://xxxxxxxxxxxxx/20140815-111929455-000001-00030-1658.csv?__gda__=1440109223_83f5e968923d7f99b30844358fe4ce4c" download="temp.csv" type="text/csv" target="_blank"/>
what removing file name download attribute , adding href attribute? doing way should eliminate need target , type well.
<a href="/path/temp.csv" download>link</a>
i haven't tried csv file before, it's worked me images after checking out w3schools example.