Hi guys, l have a question on how to do something with jquery, l'm not even sure if it's possible but here goes.
Lets say l have:
- <script>
- function to_watch(){
- alert('hi');
- }
- function run_after_to_watch(){
- alert('to_watch() has run!');
- }
- </script>
I want to know if l can make it so that jquery will fire run_after_to_watch() anytime the function to_watch() has run on my page... any help would be greatly appreciated!