Skip to content

Instantly share code, notes, and snippets.

@lelandsmith
Created February 23, 2018 21:27
Show Gist options
  • Save lelandsmith/7d472e556c851049a370b9d45bf907ff to your computer and use it in GitHub Desktop.
Save lelandsmith/7d472e556c851049a370b9d45bf907ff to your computer and use it in GitHub Desktop.
JS Custom Trigger
$(document).ready(function(){
$("p").on("myOwnEvent", function(event, showName){
$(this).text(showName + "! What a beautiful name!").show();
});
$("button").click(function(){
$("p").trigger("myOwnEvent", ["Anja"]);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment