I would like to know how to open each link in a each new window (not Tabs).
I have around 4 links and I used the below sort of code.
<a href="Images\Chapter1.pdf"
onclick="window.open(this.href, 'new window','width=1000,height=600'); return false;">
I have 4 links and the above code works to some extent.
When I press any of these 4 links then a new window is going to open the pdf document but when I click on the 2nd link then the opened window is changing it's content to 2nd pdf but I would like to have two new short windows with the content but not only one new window changing it's Content.
(Target="_Blank" will open the content in a new tab but not in a new window).
Let me know how to overcome this issue.