I've never tried this, but how about:
function setButtonToLink() { $('yourButtonId').replace(' path/you/want/to/link/to your link '); }
function onLoad() { setButtonToLink(); }
If js is not enabled, the button would be a button. If js is enabled, it would be replaced with your link.
Right?
David Smit-2 wrote: