Thanks for all help.
I can't delete the redirect jquery funciton because policy..the previous programm will make some click or hyperlink redirect page in parent ..but some page need to be changed for open in new window.
let me explain in detail
There are two types of text link
<tr><td>first</td><td><a href="aaa">link1</a></td><td>3rd</td></tr>
<tr><td>first</td><td><a href="aaa" onclick="fun1()">link2</a></td><td>3rd</td></tr>
I neither can't understand why they write like this...but so sorry I can't change all html
I only can do is append new function ....
so if the user directly click the hyperlink text, it's easy for me, I can append target to _blank.
but we alos have event function change page event user move the mouse to the record and click. also can redirect new page.
that's why this funciton....
if($.isFunction(link.attr('onclick'))){link.click();return false;} // I regard it for onclick function
else{document.location.href=link.attr('href');} // it's for tag click..
so I can tell you there are 3 ways to change page.
click the text link directly without click event funciton.
click the same row of tag area.
click the text link but with onclick function .
that's the program as I know now....
So..before js function I can append some code to change the page event.
I want to do is the parent window is same..no reload.and when click some area can open webpage in new window.