📣 Help shape Firefox by joining our Test Days event on July 21–27 to test the Firefox Semantic History Search in Firefox Beta 142

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 :) :)