[Webkit-unassigned] [Bug 50027] New: A small bug that is more of an annoyance than anything else.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Nov 24 08:52:50 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=50027

           Summary: A small bug that is more of an annoyance than anything
                    else.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
               URL: http://stackoverflow.com/questions/4265710/i-need-a-wo
                    rkaround-for-a-safari-chrome-bug-that-is-becoming-a-th
                    orn-in-my-side
        OS/Version: Windows 7
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: Alex at Chevtek.com


If you go here: http://stackoverflow.com/questions/4265710/i-need-a-workaround-for-a-safari-chrome-bug-that-is-becoming-a-thorn-in-my-side

I tried to provide as much detail as possible. This bug seems to crop up in every version I've tried so far. It is a minor bug and there is a work around but I just thought you should be aware of it. The workaround is in the selected answer, but don't be confused....the solution was not to use $(element).html($(element).html() + char); instead of $(element).append(char); Both of those methods suffer the same effects of the bug. The solution was to use JQuery's .text() function. $(element).text($(element).text() + char);

I am sure that if JQuery had a HTML encoded version of .append() that would have worked also, but it does not have that.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list