[Solved] Manually Invoke IIFE

The whole idea of the IIFE is that its an anonymous function that is immediately executed. So by definition, no there is no way to re-execute it. With that said however, you can store the function expression to a global variable, and execute it. For example window.my_iife = (function() { /* stuff */ }); window.my_iife(); … Read more