Mozilla will shut down Pocket’s services on July 8, 2025. At that time users will no longer be able to access the Pocket website, apps and API. You can export your saved items and API data until October 8, 2025 before they are permanently removed. For more information, see this article.

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Guys.. I have prob with a site, the url is here http://goo.gl/hUD0q I've used jQuery 'anything slider'.. The problem is, slider doesn't work when hosted online. But it works when run locally with the files.

I have also tried linking the jquery from the Google api.. its not working either.. The prob occurs only in FF, its working well both online & offline in the other browsers... any thoughts??

I have also tried linking the jquery from the Google api.. its not working either.. The prob occurs only in FF, its working well both online & offline in the other browsers... any thoughts??

Modified by Loose Cannon

Chosen solution

That is a problem with backslashes in the links (js\jquery.anythingslider.min.js):

<script type="text/javascript"  src="js\jquery.min.js"></script> 
<!-- Anything Slider --> 
	<link rel="stylesheet" href="slide.css" type="text/css"/> 
	<!--	<script src="js\jquery.anythingslider.min.js"></script>  -->

<script type="text/javascript"  src="js\jquery.anythingslider.js"></script>
Read this answer in context 👍 0

All Replies (4)

upgrade your browser to Firefox 8 and try

Guess the prob isn't with FF version.. Site works fine when run locally.. Only when viewed online its changes to a scroll box :(

Chosen Solution

That is a problem with backslashes in the links (js\jquery.anythingslider.min.js):

<script type="text/javascript"  src="js\jquery.min.js"></script> 
<!-- Anything Slider --> 
	<link rel="stylesheet" href="slide.css" type="text/css"/> 
	<!--	<script src="js\jquery.anythingslider.min.js"></script>  -->

<script type="text/javascript"  src="js\jquery.anythingslider.js"></script>

Oh dear..my bad... Changed it and works fine.. Thanks cor-el :) :)