(I keep forgetting this part of the forum is here).
This is rather peculiar...this works just fine...
<tr onclick="gohere('?a=content&q=edit&id=73');">
<td>Something</td>
</tr>
function gohere(url) {
location.href = url;
}
And this will not - but I return an alert that is correct.
<input type="image" src='imgs/f-edit.gif' title='Edit'
onclick="goherenot('?a=content&q=edit&id=73');" />
function goherenot(url) {
alert(url); // returns exactly what it should...
location.href = url; // just doesn't want to do this...
}
Am I not seeing something obvious here? Any help out there?