Google Chrome OnBlur endless loop
Today I want to talk about a very strange problem found developing a web page and using that web page in Google Chrome. Suppose you have the following, simple, HTML page: <!DOCTYPE html> <html> <head> </head> <body> <form> Test1: <input id=”Test1″ type=”text” value=”” onfocus=”OnFocus1()” onblur=”OnBlur1()”> Test2: <input id=”Test2″ type=”text” value=”” onfocus=”OnFocus2()” onblur=”OnBlur2()”> </form> <script> function…