Posts

Showing posts from December, 2019

Open files in a new browser tab

Today we are going to learn how to display a file in a new browser tab using jquery. I hope it would be helpful. var tab=window.open(URL,'_blank'); if(tab) { win.focus (); } else { alert ('please allow popups for this website'); }