How can i call a jQuery function from a jQuery function, Both the function are event handler.
My function-
$("#myFunction").live("change", function(){
//I want to call my calling function here
});
My Calling Function-
$("#callingFunction").live("change", function(){
});
How can i do this? Need help!
id="element1", notid="myFunction".