Created
October 28, 2015 05:00
-
-
Save dstyle0210/e6a671f71de267388b3b to your computer and use it in GitHub Desktop.
colorbox 초기화 후에 다시 띄우기
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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