I tried to hook my link to a <tr>
and made some like this:
<tr onlick=document.location.href='something.html'>
I do find it working but the thing is.. I want to make the link in a popup window and have this function..
function popit(url){
newwindow = window.open(url, '', "status=yes, height=500; width=500; resizeable=no");
}
It's quite working fine when I applied it to some of my <a>
but the thing is I cant use popit(url)
function and at the same time use onclick
attribute to a <tr>
.