layout icon indicating copy to clipboard operation
layout copied to clipboard

JQuery 3.x $.parseJson

Open melloware opened this issue 8 years ago • 2 comments

$.parseJson is now JSON.parse in JQuery 3.x

https://github.com/jquery/jquery-migrate/blob/master/warnings.md

JQMIGRATE: jQuery.parseJSON is deprecated; use JSON.parse

Cause: The jQuery.parseJSON method in recent jQuery is identical to the native JSON.parse. As of jQuery 3.0 jQuery.parseJSON is deprecated.

Solution: Replace any use of jQuery.parseJSON with JSON.parse.

melloware avatar Sep 16 '17 16:09 melloware

Thanks @melloware

GedMarc avatar Sep 25 '17 09:09 GedMarc

No prob! I was fixing another component I use and saw this migration hint and figured you guys would be interested. Once again thanks for all your amazing work!

melloware avatar Sep 25 '17 11:09 melloware