Close ColorBox iFrame after submit

后端 未结 8 1456
刺人心
刺人心 2020-12-13 21:01

I\'m using jQuery ColorBox to display a shopping cart item. When a user enters the quantity in the iFrame (opened with colorbox) and clicks on the submit button, I want the

8条回答
  •  一整个雨季
    2020-12-13 21:27

    After the form is submitted in Frame 1, you can use the following JavaScript to reload the parent frame:

    window.parent.location.reload(true);
    

提交回复
热议问题