my script uses a focus event to run a function but there is another script on the page that I think uses the same event on the same object to run it's function so my function isn't excecuting.
I know the script is running because it adds an image to below the form and no errors are showing up. the page is http://imwithjoe.com/blog-money/what-really-goes-on-at-blog-world-expo#comment-1931 and my script is in the head. the function that is supposed to run is jQuery('#comment').focus(cl_dostuff); can two separate scripts listen to the same event on the same object and both run? would changing the way I call the commands make my listen event separate? ie. use cljQuery('#comment').focus(cl_dostuff); if so, how do I do this? many thanks!