You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chrome's dev console kept throwing me a nasty error that xxxx.yyy.size()was not a function. Turns out calls to size() have been deprecated since JQuery 1.8. Replaced with .length and it worked perfectly.
The text was updated successfully, but these errors were encountered:
Chrome's dev console kept throwing me a nasty error that
xxxx.yyy.size()
was not a function. Turns out calls tosize()
have been deprecated since JQuery 1.8. Replaced with.length
and it worked perfectly.The text was updated successfully, but these errors were encountered: