I am using jquery colobox to show the popup in my asp.net mvc(C#) application.
Following is the line to call colorbox:
$.fn.colorbox({ href: '/User/Detail', width: "1200px", height: "560px", title: "User Detail", overlayClose: false });
UPDATE(using the below with the latest version):
$.colorbox({ href: '/User/Detail', width: "1200px", height: "560px", title: "User Detail", overlayClose: false });
When i click the close button of colorbox, before it opens, it breaks everything including jquery.
I am showing the user details (Personal, Billing,...) in jquery tabs in the popup which is opened using colorbox. When i click a link to open the colorbox (User details) and when i click the close button, before it loads (when still showing loader), the next time when i click the same link its not showing the tabs and all the events (like click binded through jquery) are broken.
Any idea on this?