Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an INPUT element in my html and I work with onMouseOut event for this INPUT. All is fine except popupmenu (context-menu) when its popup in INPUT - onMouseOut of INPUT is raised (may be it right - positions in context menu is out of border than INPUT). How to NO raise INPUT-element.onMouseOut, if context menu pop ups on INPUT?

 <script type="text/javascript">
 function onMouseOut(event) {
       var e = event.toElement || event.relatedTarget;
      if (e.parentNode == this || e == this) {
         return;
      }
    alert('MouseOut');
  }

  document.getElementById("first").addEventListener('mouseout', onMouseOut, true);
  \\ this string does not have any effect on my drupal6
  \\ how I can directly use this function to my INPUT below?
  }

  </script>


 <input type="text" id="first" size="12" readonly="readonly" value="01234567890" title="Click here" onMouseOver="this.select();">
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.