Я довольно новичок в colorbox и lovin-it. Я пытался представить
форма из Colorbox iframe в родительское окно, но не повезло.
Любые предложения будут ценны! Вот мой код.
$('#CustomizeBuy').click(function(event){
event.preventDefault();
$(this).attr('action','customize-order.cfm');
parent.location.submit();
parent.$.fn.colorbox.close();
});
или
$('#CustomizeBuy').click(function(event){
event.preventDefault();
document.QuickOrderForm.action ="customize-order.cfm";
$('#QuickOrderForm').submit();
parent.$.fn.colorbox.close();
});