$(".callbacks").colorbox({
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
});
ตรงนี้สังเกตุที่ onClosed:function(){ }
เราจะใส่ Event ตรงนี้ว่าจะให้ reload
เช่นนะครับ
onClosed:function(){
window.location.reload();
}
อันนี้ทำให้หน้าปัจจุบัน reload นะครับฟังชั่น on อย่งอื่น ไม่ใช้ก็ลบออกไปครับ