I need to trigger a custom event in the callback of a trigger call, but I can\'t get it to work.
trigger
I tried this:
var $input = $( \".ui-pop
The Trigger doesn't have a callback function - you can better re-write your code to use the .on method.
$("body").on("click", "#click", function() { alert("Clicked!"); });
JSFiddle.