i'm trying to make a whole <tr> clickable as a link. Javascript seems to be the only way i can figure out to do this. The following is the code i currently have, it just wont go to the correct place.
Code: Select all
function trlink(){
var tr = document.getElementsByTagName("tr");
for(var i=0; i < tr.length; i++) {
tr[i].onclick = function() {
location.href='./?cat='+(tr[i].getAttribute('id'));
}
}
}Can anyone help me here?
Also as a secondary matter, i'd like the row to appear as a link so what is the code for changing the mouse to the link hand and back? Also how do you change the status bar text to the url (for browsers which support it).
This is the code that i tried but it didn't seem to work.
Code: Select all
tr[i].onmouseover = function() {
tr[i].style.cursor="hand";
}
tr[i].onmouseout = function() {
tr[i].style.cursor="pointer";
}