uncaught exception: Permission denied to get property HTMLDivElement.parentNode

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Claus Mygind
    Contributor
    • Mar 2008
    • 571

    uncaught exception: Permission denied to get property HTMLDivElement.parentNode

    I get this error after I backfill the user's screen from an ajax operation. The cursor disappears but you can still type in the input field.

    uncaught exception: Permission denied to get property HTMLDivElement. parentNode

    I am working with FireFox exclusively.

    What must I do to avoid this error.
  • Claus Mygind
    Contributor
    • Mar 2008
    • 571

    #2
    Some searching on the web help me find part of this problem. The error occurred in Matt Kruse’s Calendar pop up which I am using.

    Original:
    var t = e.originalTarge t;

    changed to:
    var t = e.target;

    Now I just have to figure out why the cursor disappears on me.

    Comment

    Working...