Open michelreyes opened 11 years ago
The suggested version is working with the latest jquery. I downloaded it recently. I only found that trSelected class seems to behave slightly differently than before. I believe it used to attach immediately when I selected a row with the mouse. Now it only attaches after I click on the row. Is it possible to return the original behavior or have some flag to have that behavior?
not at all, in the line js, line #13 says var browser = $.browser and browser is not jquery 1.9.1 compatibility. i fixed that like this var browser = navigator.userAgent.toLowerCase();
I can confirm this issue.
jQuery migrate will help as a workaround: https://github.com/jquery/jquery-migrate/
you'r right, but i prefer to use: var browser = navigator.userAgent.toLowerCase(); you'r choice is the best, because you can fix some others library's problems with that.
As stated by @NaomiN, this is a duplicate. Thanks for pointing this out.
How can i make the project compatible with jquery lastest releases like jquery 1.9.1?