I have used a plugin that uses prototype js, it’s working fine but the problem is it’s requesting some other js files and shows me some NetworkError in firebug console. The plugin is working fine so i don’t need other js file to include. Is there any way so that i can remove these errors? This is what i see in firebug console
"NetworkError: 404 Not Found - http://example.com/js/builder.js"
"NetworkError: 404 Not Found - http://example.com/js/effects.js"
"NetworkError: 404 Not Found - http://example.com/js/controls.js"
"NetworkError: 404 Not Found - http://example.com/js/sound.js"
"NetworkError: 404 Not Found - http://example.com/js/slider.js"
"NetworkError: 404 Not Found - http://example.com/js/dragdrop.js"
"NetworkError: 404 Not Found - http://example.com/js/controls.js"
"NetworkError: 404 Not Found - http://example.com/js/slider.js"
"NetworkError: 404 Not Found - http://example.com/js/sound.js"
I included the
prototype.jsandscriptaculous.jsfrom google CDN (https://developers.google.com/speed/libraries/devguide) and now it didn’t show any error and since these js are gzipped the plugin is loaded faster than before. Anyway thanks for the time in this question.