Hi.
I am using the colourbox jquery plugin for my light boxes and I want to display a lightbox after a current function finishes, is this possible?
My current code is
I trigger the light box with this line of code: $(".ajax").colorbox();Code:function(data) { var obj = jQuery.parseJSON(data); if(obj.result=="failure") { //show the message in the div with a red background $(".bookingResult").addClass("classroomExpertError"); $(".bookingResult").html(obj.Message); $('.bookingResult').show('slow', function() {setTimeout(function(){$('.bookingResult').hide('slow'); }, 3000); // <-- time in milliseconds }); } else { //show the message in the div with a green background $(".bookingResult").addClass("classroomExpertSuccess"); $(".bookingResult").html(obj.Message); $('.bookingResult').show('slow', function() {setTimeout(function(){$('.bookingResult').hide('slow');}, 3000); // <-- time in milliseconds }); } });
Im trying to get the light box to show after the the settimeout has faded the div and I just cant manage it. can any one help me out.
Cheers
Chris



Reply With Quote


Bookmarks