|
@@ -66,7 +66,12 @@ $(".next").click(function(){
|
|
|
|
|
|
if(animating) return false;
|
|
|
animating = true;
|
|
|
-
|
|
|
+ $("html,body").animate(
|
|
|
+ {
|
|
|
+ scrollTop: $(".personal__box").offset().top
|
|
|
+ },
|
|
|
+ 0
|
|
|
+ );
|
|
|
current_fs = $(this).parent();
|
|
|
next_fs = $(this).parent().next();
|
|
|
|
|
@@ -105,6 +110,12 @@ $(".previous").click(function(){
|
|
|
if(animating) return false;
|
|
|
animating = true;
|
|
|
|
|
|
+ $("html,body").animate(
|
|
|
+ {
|
|
|
+ scrollTop: $(".personal__box").offset().top
|
|
|
+ },
|
|
|
+ 0
|
|
|
+ );
|
|
|
current_fs = $(this).parent();
|
|
|
previous_fs = $(this).parent().prev();
|
|
|
|
|
@@ -154,7 +165,7 @@ $("input[name=submit]").click(function(){
|
|
|
$('#term-error').text('');
|
|
|
}
|
|
|
if(stop == 0) {
|
|
|
- alert("送出成功");
|
|
|
+ alert("我們已將5萬裝修折價券寄至您所填寫的電子信箱,請確認電子信箱,謝謝!");
|
|
|
}
|
|
|
});
|
|
|
|