If javascript and jQuery are enabled, this effectively replaces all link buttons with links:
$("input:submit").hide().each(function (index, Element) { var elm = $(Element); elm.after($("<a href=#>" + elm.val() + "</a>") .click(function () { elm.click(); }) ); });
Based on the message associated with the accepted answer.
source share