I want to execute a custom jQuery function after another custom function completes The first function is used for creating a \"typewriting\" effect
func
You could also use custom events:
function Typer() { // Some stuff $(anyDomElement).trigger("myCustomEvent"); } $(anyDomElement).on("myCustomEvent", function() { // Some other stuff });