views:

22

answers:

1

Hi,

I needed some advice on how i can remove the repetition in my current project.

I have several colorbox dialog windows which are of the same size, have the same transition etc when they are called but perform different jquery manipulations, AJAX calls etc when they have completed loading.

Currently they are all in their own seperate declarations but i would like to move them into one as it is becoming unmanageable. I assume that the best way to deal with this is to create a function and pass parameters to said function for the defaults such as dimensions and transitions but i was not sure how to deal with the the more unique aspects when they are needed.

For example if i have two colorbox methods like so:

$(".pricing > tbody > tr > th > .price_report > a").colorbox({
    transition: "elastic",
    innerWidth: "800px",
    innerHeight: "800px",
    opacity: "0.5",
    onComplete:function(){ 

        $("myDiv").addClass("dialogLoaded").append('<span class="mySpan" />');

        }
});

and:

$(".wrap .widget .dialog_call").colorbox({
    transition: "elastic",
    innerWidth: "800px",
    innerHeight: "800px",
    opacity: "0.5",
    onComplete:function(){ 
        $.ajax({
          url: "test.html",
          cache: false,
          success: function(html){
            $("#results").append(html);
          }
        });
    }
});

So this can obviously be turned into a function but how would i pass the differences in the code to the onComplete event when needed?