hi - am new to jscript and want a row
of a table to be a link to a new page.
have the following but get an 'invalid argument' error
of a table to be a link to a new page.
have the following but get an 'invalid argument' error
Code:
<script>
function openview(url){
window.open(url,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width=655,height=650');
}
</script>
<table>
<tr<%=sItemRowClass%> style='cursor: hand;' onClick="openview('stockview.asp?stockid=1');">
<td>blah</td>
</tr>
</table>