スクロール プラグインを使用してページを「#Table_Details」までスクロールしようとしていますが、うまく動作しないようです。
ラジオ (.ModemsSelect) ボタンをクリック/変更すると、テーブル ("#table_Details") があるページを下にスクロールする代わりに、クリックしたラジオ ボタンの場所までページがスクロールします。これを正しく行っているのか、何が起こっているのかわかりません。
$(".ModemsSelect,.ServicesSelect").change(function (e) {
var data = $("#" + this.value).serialize();
var request = $.ajax({
url: "classes/sCart.php?action=add",
type: "POST",
data: data,
dataType: "html",
radioButton: $(this).attr('class')
});
request.success(function (data) {
//$(".in_cart").html("");//clear last item selected
console.log("extra item added to cart");
refreshCart();
if (this.radioButton == "ModemsSelect") {
$.scrollTo($('#Table_Details'));
$("#icon_check_modem").html("");
$("#icon_check_modem").html("<img src=\"../img/check_icon.png\">");
$('.Modem_buttonNext').button("enable");
} else if (this.radioButton == "ServicesSelect") {
$("#icon_check_Installtype").html("");
$("#icon_check_Installtype").html("<img src=\"../img/check_icon.png\">");
$(".install_buttonNext").button("enable");
} else {
}
});
});
どんな助けでも大歓迎です。ありがとうございました。