4

In my web site, when I F12 from the browser, I see in the console (Chrome Dev Tools) the error/warning, "event.returnValue is deprecated. Please use the standard event.preventDefault() instead."

Yet I search my project for "event.returnValue" and it turns up no instances of that string.

Assuming it is some Microsoft or jQuery-written code that is causing this, should I do something about it, and if so, what?

B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862

1 Answers1

3

see this ticket

http://bugs.jquery.com/ticket/14320

This seems to be happening in the latest version of Chrome. I guess you can not really do much about it but ignore it.

Scary Wombat
  • 44,617
  • 6
  • 35
  • 64
  • And this; http://stackoverflow.com/questions/20045162/event-returnvalue-is-deprecated-please-use-the-standard-event-preventdefault/20995165#20995165 – numediaweb Jan 08 '14 at 12:05