[EMAIL PROTECTED] wrote: > http://hertzelle.com/pixel/ is where the demo is currently running. > Before you click you will see what is happening to the "grid" the > color is not returning to it's previous state. > OK so I was right - you do have a double equal sign in your code! Change:
$(this).css(background-color) == p_color; to $(this).css(background-color) = p_color; > Also, is there a better way or FASTER way to make these remote > requests. If you see my demo you will notice it takes a good amount of > time to complete the request. > Given the hundreds of event handlers you're binding to your app I suggest you look at Event Delegation (do a search for it on google or search this list).