A couple of JavaScript solutions...
Assumptions:
- you are using LS 2
- you want the button on the last question page (not the "End" page)
- you want the link opened in a new window
1) If you want to do this for a single survey,
set up your survey to use JavaScript and add the following script to the source of one of the questions on the last question page.
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
var buttonText = 'Review Answers';
var url = 'http://someRedirectLink.com';
$('#movesubmitbtn').before('<button id="movereviewbtn" type="button">'+buttonText+'</button>');
$('#movereviewbtn').click(function() {
window.open(url, '_blank');
}).button();
});
</script>
2) If you want do do it for several surveys using the same template, add this to the end of template.js:
$(document).ready(function(){
if($('#movesubmitbtn').length > 0) {
var buttonText = 'Review Answers';
var url = 'http://someRedirectLink.com';
$('#movesubmitbtn').before('<button id="movereviewbtn" type="button">'+buttonText+'</button>');
$('#movereviewbtn').click(function() {
window.open(url, '_blank');
}).button();
}
});