“element.dispatchEvent is not a function” js error caught in firebug of FF3.0
are you using jquery and prototype on the same page by any chance? If so, use jquery noConflict mode, otherwise you are overwriting prototypes $ function. noConflict mode is activated by doing the following: <script src=”https://stackoverflow.com/questions/980697/jquery.js”></script> <script>jQuery.noConflict();</script> Note: by doing this, the dollar sign variable no longer represents the jQuery object. To keep from rewriting … Read more