Slider is all of a sudden not working on site - html

I have not changed anything on my website and all of a sudden the front page slider is not working.
http://solutionsfortravel.com/
Can someone please give an recs as to why?
Thanks

You have a lot of errors in the console - you can use Google Chrome's developer tools to look for missing files and Javascript errors.
https://developer.chrome.com/devtools
You can also get similar tools in Firefox, Opera and Internet Explorer (other browsers are available)
A quick look at the console shows this error, which is to do with some kind of slider library judging by it's name.
jquery.nivo.slider.pack.js?ver=3.3.5:12 Uncaught TypeError: d is not a function
You should really try and fix all the errors you're getting though

In Google Chrome developers, console part shows the error:
Uncaught TypeError: $(...).datepicker is not a function
Try to resolve this problem with datepicker

Related

TinyMCE Uncaught ReferenceError: ext is not defined

I am including tinyMCE from CDN using this simple code:
$('head').append('<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>');
tinymce.init({selector: '#selector_id'});
It works fine without any warnings/errors in most browsers (FF, IE, Opera)
In Chrome it works too, but console shows this error: 'Uncaught ReferenceError: ext is not defined - include.postload.js:539'.
I tried including different available versions (4, 4.0, 4.1), but error persits.
I also tried to include script directly in header, without JS, but it didn't help either.
What can be the reason for that error? and how can I get rid of it?
It's a bug in Adblock Plus, closed 3 days ago, so hopefully the fix will be available soon. It was mentioned on a forum that the problem persists even when ABP is disabled, which is a bit disappointing.
Are you using an Ad-Blocker (e.g. Adblock Plus)?
I had the same error and got rid of it when I temporarily deactivated the browser extension.
I assume from time to time these extensions have problems with new browser versions
(e.g. here).

How to create custom HTML elements

I am doing this tutorial here
I simply copied and pasted the code below.
var XFoo = document.register('x-foo');
document.body.appendChild(new XFoo());
I immediatly get an error saying that:
Uncaught TypeError: Object #<HTMLDocument> has no method 'register'
I do not know why nor what I am doing wrong. I am using the Chrome browser.
I implemented Custom Elements in Chrome so I might be able to help.
Starting with Chrome 33, document.register has been renamed document.registerElement.
Up to Chrome 32, the most likely reason you would get that error is if the Experimental Web Platform Features flag is not enabled. Cut and paste chrome://flags into the Omnibox and hit enter to check. After changing flags, you have to restart your browser for the changes to take effect.
HTH!
Only firefox and chrome are known to support it yet. If you are trying it in IE, Safari or Opera then you are out of luck.

Chrome Console Bug When Debugging Javascript

Chrome console tells you what line in the parsed file JavaScript syntax errors are located. Every once in a while, when I click on the link to take me to see the actual code of where the error is, I get a blank screen in the console. If I open up the same page inside Firefox with Firebug, I can see the error code without any issues.
Is this a known error in Chrome? If so, are there any ways to remedy it?
Here is an official list of known issues with Google Chrome. It doesn't seem like that is one of the known issues. I would try again and see if it happens again.

Userscripts error in Chrome

I'm not working with userscripts at the moment, I just noticed the following error when checking the Network tab for the page I'm working on to see what it's doing (It's taking forever to serve my GET request).
Uncaught ReferenceError: unsafeWindow is not defined
chrome-extensions://bpcnnanbbiobnpfamcdpkopledhphmh/fbex.js:864
Can anyone tell me what this is?
Thanks!
This is caused by the Extension Hear Youtube. It doesn't appear to have any adverse effect on other websites.

google chrome console "Failed to load resource" problems

I have a page and when I open it in google chrome and see in the console of the debugging tool, I get the following message as shown in the picture.
I do not have those four .gif images and I do not need them too but from where and how am I getting this error message? I have NOT used those four images in any of my code but still getting those message, I could not understand.
Any suggestions?
Check your CSS. They are likely getting loaded there.
Don't forget to check browser add-ons and plugins. Some of them works in background and produce some errors the browser shows you in the console.