jquery - how to open pdf file in firefox browsers window -
i want open pdf file links new browser window. following jquery code works fine except in firefox opens file save dialog.
jquery(function($) { $('a[href$=".pdf"]').attr('target', '_blank'); });
can possibly force firefox open document chrome?
david right. browser behavior opening mime types, pdf varies according browsers, browser versions, operating systems, etc. can force download of resource, instead of visualizing it. in conclusion, that's out of our control.
Comments
Post a Comment