works as expected in 1.4.1 but not with 1.4.2

works as expected in 1.4.1 but not with 1.4.2

I will admit upfront that I am relatively new at writing plugins.

The plugin below was working fine in 1.4.1 but does not work fine in 1.4.2.

The plugin binds a click function to specific buttons.  In 1.4.1 when any of the bound buttons was clicked it fired once, now in 1.4.2 I get the same number if "firings" as I have buttons bound.

Can somebody guide me as to what I need to rewrite in order to get back to how it worked in 1.4.1?

Thanks in advance...

Randy


jQuery.fn.HSAModalForm = function(params)
    {
    params = jQuery.extend(
        {
        ....
        },params);
       
    return this.each(function(){ $(params.ajaxButtons).bind('click',fModalBox); });
   
   
    function fModalBox()
        {
        ....       
        } // function fModalBox
    };