» Forums
» DynarchMenu forum
» Bug reports
» hmenu on an input field in firefox
hmenu on an input field in firefox
2005/08/17 18:20
Viewed 17057 times
Replies: 2/9
by Greg
I'm getting a strange error when I put an hmenu on an input field. This error does not occur when I place it anywhere else or when I use IE. Do you have any ideas what could be causing this.. Error Details: I get the following error when I move my mouse into the menu that has popped up and then out of the menu.... but only when I move out of the top of the menu. Uncaught exception: Permission denied to getProperty HTMLDivElement.parentNode. Input Details: Context Menu Details:
  • Re: hmenu on an input field in firefox
    2005/08/17 18:25
    Viewed 19953 times
    Replies: 0/0
    by Greg

    hmmm posting the code didn't work. I don't think the code is really important though.. it is the same as I use for anywhere else I use it except it is on an input instead of a div tag.

    last
    Re: hmenu on an input field in firefox
    2005/08/17 18:27
    Viewed 20700 times
    Replies: 1/7

    Not sure this will help, but:

    This appears to be a bug in the current versions of Firefox; hopefully the next branch (starting with 1.5) should fix it, but until then here's a simple “fix”.  You need to disable autocompletion on that field.  You do it like this:

    <input type="text" autocomplete="off" ... />

    You can also disable autocompletion on the whole form if you wish:

    <form action="..." method="post" autocomplete="off">

    Please let me know if using this attribute solved the problem.

    last
    Re[2]: hmenu on an input field in firefox
    2005/09/23 20:10
    Viewed 23295 times
    Replies: 2/6

    Using Firefox 1.0.7 with autocomplete="off" in my forms I am still getting:

    Error: uncaught exception: Permission denied to get property HTMLDivElement.parentNode

    This occurs whenever I mouseover the input element in the menu.

    Is there any other work arounds or ideas?

    • Aaron Judd
    • WebApplica,Inc
    last
    Google