So currently I have a list of PDF files that are displayed on a page with a link to their location. How would I go about downloading or viewing the file without using external libraries?
Currently the URL to the PDF's location just opens a new tab which is a blank web page without showing the PDF.
I'll post my code below. any help would be greatly appreciated!
<div class="body">
                    <div class="scroll-container">
                        <table>
                            <tbody>
                            <tr dir-paginate="action in test | itemsPerPage: 14">
                                <td class="date"><a href="{{ action.Url }}" target="_blank">{{ action.Name }}</a></td>
                                <!--<td class="date"></td>-->
                            </tr>
                            </tbody>
                        </table>
                    </div>
                    <div class="total-container">
                        <div class="top">
                            <div class="pagination">
                                <dir-pagination-controls></dir-pagination-controls>
                            </div>
                        </div>
                    </div>
                </div>**strong text**
 
    