dabear pointed out that you can do this by creating a function that
returns a new function like so :
var arg1 = someval
var arg2 = someval
...
$(el).generalfunction( a, b, c, ... ,
(function(arg1, arg2, ... ){
return function(){
/// use arg1, arg2, ... here} ;
})(arg1, arg2, ...)
);
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---