I've got a form with several fields and I've added some real simple context help using jQuery with focus and blur.
$("[EMAIL PROTECTED], textarea").focus(function() { $(this).next('.contexthelp').show(); }); But not one of the forms is using TinyMCE and I can't for the life of me figure out how to interact with it... I simply want my .contexthelp div to display when the user clicks anywhere in TinyMCE but so far everything I've tried has been unsuccessful. I've trolled the archives but haven't found anything helpful. Any suggestions? Jim