Open browser's error console and you will see what happens. It is not related to "ARI Data Tables" update. Javascript error occurs in the following code:
| Code: |
jQuery(document).ready(function(){jQuery('.socialconnect').append('<div><button class="facebook_button facebook zocial">Login With Facebook</button></div>');jQuery( '.facebook_button' ).click(function(e){e.preventDefault();}).oauthpopup({url: 'https://www.facebook.com/dialog/oauth?response_type=code&client_id=454707084629902&redirect_uri=https%3A%2F%2Fsim-x.net%2Findex.php%3Foption%3Dcom_jsn%26tmplsocial%3D1%26view%3Dfacebook%26task%3Daccesstoken&scope=email&state=1b43f4e976670fa58e4b9eddcb803ff0&display=popup',name: 'oAuthFacebook',callback: function( success, error, oAuthWindow ) {if ( success == true ) {window.location = 'https://sim-x.net/index.php?option=com_jsn&tmplsocial=1&view=facebook&return=aHR0cHM6Ly9zaW0teC5uZXQvaW5kZXgucGhw';} else {window.location.reload();}}});});
jQuery(document).ready(function(){jQuery('.socialconnect').append('<div><button class="google_button googleplus zocial">Login With Google</button></div>');jQuery( '.google_button' ).click(function(e){e.preventDefault();}).oauthpopup({url: 'https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=830061310999-br7fu0o2j9loakjubb1lcoqudua0ijqj.apps.googleusercontent.com&redirect_uri=https%3A%2F%2Fsim-x.net%2Findex.php%3Foption%3Dcom_jsn%26tmplsocial%3D1%26view%3Dgoogle%26task%3Daccesstoken&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fplus.me+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email',name: 'oAuthGoogle',callback: function( success, error, oAuthWindow ) {if ( success == true ) {window.location = 'https://sim-x.net/index.php?option=com_jsn&tmplsocial=1&view=google&return=aHR0cHM6Ly9zaW0teC5uZXQvaW5kZXgucGhw';} else {window.location.reload();}}});});
jQuery(document).ready(function(){jQuery('.socialconnect').append('<div><button class="linkedin_button linkedin zocial">Login With LinkedIn</button></div>');jQuery( '.linkedin_button' ).click(function(e){e.preventDefault();}).oauthpopup({url: 'https://www.linkedin.com/uas/oauth2/authorization?response_type=code&client_id=77bd7sxnw8vtpn&redirect_uri=https%3A%2F%2Fsim-x.net%2Findex.php%3Foption%3Dcom_jsn%26tmplsocial%3D1%26view%3Dlinkedin%26task%3Daccesstoken&scope=r_basicprofile+r_emailaddress&state=1a063947115884f6040b98d00725ca33',name: 'oAuthLinkedin',callback: function( success, error, oAuthWindow ) {if ( success == true ) {window.location = 'https://sim-x.net/index.php?option=com_jsn&tmplsocial=1&view=linkedin&return=aHR0cHM6Ly9zaW0teC5uZXQvaW5kZXgucGhw';} else {window.location.reload();}}});});
|
and it prevents execution of "ARI Data Tables" javascript code and this error occurs in the code because several instances of jQuery library are loaded. You can try to disable "social" extension which adds this code.
Regards,
ARI Soft