I want to know if their is an option to call a function that is already assigned to a JQuery event.
For example:
$("#somediv").change(function() { //do something });
I want to be able to manually call that function that was originally assigned to the "somediv" element.
Thanks.
$("#somediv").changeis going to give you the functionchangeof the jQuery object, not your function.typeof ($("#somediv").change)will always be'function'with jQuery.