3

I use a website for work which employs frustrating JavaScript links. The following post offers a solution:

How to open stubborn javascript links in a new tab or new window?

However, I haven't been able to amend the scripts offered to work for the site I'm using. Details below....

http://www.nmswebquote.co.uk/fmc/default.aspx (no public access)

javascript:__doPostBack('ctl00$ctl00$cphBaseContent$CPH_Section2$grdDetail','VIEW_ESTIMATE$6')

javascript:__doPostBack('ctl00$ctl00$cphBaseContent$CPH_Section2$grdDetail','ESTIMATE_HISTORY$6')

Can anyone please help?

Larry
  • 31

1 Answers1

0

I just stumbled on this question 7 years later trying to do something similar, and Brock Adams' comment led me to an answer.

__doPostBack seems to be an ASP thing, so there's a form at the top of the page that looks like this:

<form name="aspnetForm" method="post" action="./foo.aspx" id="aspnetForm" role="presentation">

Adding target="_blank" causes all the links to open in new tabs.