Botão de gatilho Clique em JQuery
$("input").trigger("click");
Adventurous Alligator
$("input").trigger("click");
$( "#foo" ).on( "click", function() {
alert( $( this ).text() );
});
$( "#foo" ).trigger( "click" );
$( "#foo" ).on( "custom", function( event, param1, param2 ) {
alert( param1 + "\n" + param2 );
});
$( "#foo").trigger( "custom", [ "Custom", "Event" ] );
$('body').trigger('this_works', [{data: [1, 2, 3]}, 'something']);
$('body').on('this_works', function (event, json, string) {
// parameter is stocked in json.data here.
console.log(event, json, string);
});
$("a#mylink").trigger("click"); // triggers event on an element
$( "#foo" ).trigger( "click" );