0

I have created jquery model popup using asp.net . I'm getting error from chrome browser in the below.

event.returnValue is deprecated. Please use the standard event.preventDefault() instead. jquery-1.4.1.min.js:73

aksu
  • 5,221
  • 5
  • 24
  • 39

1 Answers1

1

It's just what it sounds like. You've got a script that is using event.returnValue instead of event.preventDefault(). You're also using a fairly old version of jQuery. If you have the ability to upgrade, you should do so.

Palpatim
  • 9,074
  • 35
  • 43