Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
Created October 28, 2015 05:00
Show Gist options
  • Select an option

  • Save dstyle0210/e6a671f71de267388b3b to your computer and use it in GitHub Desktop.

Select an option

Save dstyle0210/e6a671f71de267388b3b to your computer and use it in GitHub Desktop.
colorbox 초기화 후에 다시 띄우기
// colorbox 초기화 한 후에 다시 띄우기.
function onlyCallOrderOpen(){
var colorboxOptions = {
inline : true,
width : "100%",
href : "#onlyCallOrder",
onClosed: function () {
clearInterval(timer);
$(".certiInput").hide();
$.colorbox.remove();
},
title:"어쩌고"
};
$.colorbox(colorboxOptions);
$('#cboxClose').remove();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment