open sharepoint attachment in browser new window
To open sharepoint attachment in browser new window. here is the code $(document).ready(function() { $.each($("a[onclick*='DispDocItemExWithServerRedirect']"), function(i, anchor) { var attUrl = $(this).attr("href"); $(this).removeAttr("onclick"); $(this).removeAttr("onmousedown"); $(this).click(function (){ window.open(attUrl); return false;}); }); });