> I have two plugin(A and B) each of this has a handle. > When load these two plugin(Order: A, B) in one page, > plugin B will using A.handle instead of B.handle which > is wrong.
If you were using a closure I don't see why that would happen, since the name is only in the scope of the closure. Perhaps you forgot the "var" in front of the variable and it ended up being global? If both plugins created a property named jQuery.handle then that would cause trouble too. _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
