You need to call .trigger() . You can pass any number of arguments.
$('element').trigger('click', [arg1, arg2, ...]);
These additional parameters are then passed to the event handler:
$('element').bind('click', function(event, arg1, arg2, ...) { });
Link: .trigger ()
jAndy
source share