Jump to content

Console Errors


flyalaska

Recommended Posts

I was looking on my browsers error console. I noticed some errors. Here is my URL - Click here!

Uncaught TypeError: Cannot read property 'mozilla' of undefined - script.js.554

Uncaught TypeError: Cannot read property 'msie' of undefined - script.resonsive 442

Uncaught TypeError: Cannot read property 'msie' of undefined - script.js 34

Line 554 is

var wheelEvents = !$.browser.mozilla ? "mousewheel" : // IE, opera, safari

Line 442 is

if (!jQuery.browser.msie || jQuery.browser.version > 8) {

Line 34 is

if (!$.browser.msie || parseInt($.browser.version, 10) !== 9) {

ANy help would be appreciated. I looked on google, with no luck.

Edited by flyalaska
Link to comment
Share on other sites

I believe this occurs when you have jQuery version 1.9.* or above. (In your case, you have 2.1.4).

The browser has trouble "sniffing" the browser for information.

For a fix, try and add this reference after loading all your jQuery files (core_htmlhead possibly unless you've referenced them in layout or elsewhere).

<script src="http://code.jquery.com/jquery-migrate-1.2.1.js"></script>

Or go and change your jQuery 2.1.4 to 1.9.0 and see if anything happens (note, this may break some core functions).

Link to comment
Share on other sites

Yeah, that is weird. I think it's just echoing another template inside the original page, weird how it's a full page though. Have you modified your schedule search at all. (module or template)

Can you try changing your jQuery version to 1.8.3 and see if that works (again, might break things but its below 1.9.0)

Do you need these script files for the skin to work? What if you remove them (referenced under your footer).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...