Quote Originally Posted by MaxBodine View Post
Thank you so much for your input. This is new to me, but digging in and I found Nu HTML Checker. I used the chrome inspect and see what you were talking about https://code.jquery.com/jquery-1.12.0.min.js, is invoked via document.write. Then read up, if it is invoked by document.write() is the issue. In admin I tried Dev Tools looking for document.write() nothing.

Then in Nu HTML Checker I found this:

<script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript type="text/javascript" src="//code.jquery.com/jquery-1.12.0.min.js"%3E%3C/script%3E'));</script>↩
<script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript type="text/javascript" src="includes/templates/maxtemp/jscript/jquery.min.js"%3E%3C/script%3E'));</script>↩

So first thought is a header and in common/html_header.php I found it:

/** CDN for jQuery core **/
?>

<script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript type="text/javascript" src="//code.jquery.com/jquery-1.12.0.min.js"%3E%3C/script%3E'));</script>
<script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript type="text/javascript" src="<?php echo $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'); ?>/jquery.min.js"%3E%3C/script%3E'));</script>

<?php
/**

Way out of my comfort zone here or knowledge... can this be rewritten in a link in that header file?

First download this file to my_template/jscript/jquery-1.12.0.min.js

Then put this in the header?

<script type="text/javascript" src="my_template/jscript/jquery-1.12.0.min.js"></script>

It says it is for CDN for JQuery core, Not sure what that is...?

Again thank you!

Making notes here of what I try so others can follow. Hope to help someone else. :)
Ok so, first off, the jquery file(s) are considered recommended to be attempted remotely rather than locally, secondly the issue is (if hadn't figured it out yet) is that it seems that jquery-1.*7*.0 is being loaded instead of something at least more recent.. You can find where that file is referenced by using the tools->developers tool kit and searching all files (lower row of search tools) for the content I posted before (in part or whole). That should result in finding one or more files that are related to the mobile/tablet files where this issue is occurring.