responsive-tables
responsive-tables copied to clipboard
Fixed incompatibility with jQuery 3.x
Hello.
This pull request is in response to Issue 42, newer jquery version.
The issue was the use of the .load()
event, which has been removed from jQuery 3. I updated this to use the .on()
method.
While in there, I also updated the document-ready handler, as $(document).ready(fn)
has been deprecated. I updated this to use the jQuery(function)
syntax.