Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
Can someone offer me some directions for debugging this problem I'm having with a project I'm working on. Hit this url and you'll see the naked HTML doc for roughly 1-3 seconds before the stylesheet kicks in?
The shortest way I think is to move:
<script src="js/jquery.dropotron.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-panels.min.js"></script>
<script src="js/init.js"></script>
<script src="js/index.js"></script>
to the top of the page. You have some css in "js" files and thats why unless js is loaded - you see this pure HTML code.
Edit: of course make sure jquery.js is before that ;).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
In order to include jQuery and jQueryUI libraries we can use below code in html
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js"></script>
Is it possible to use something similar to include Fancy Tree plugin using a url and not downloading the file from http://plugins.jquery.com/fancytree/
Thank You
There is no CDN for Fancytree.
Note that linking to another site (except for official CDNs such as googleapis) to include ressources will steal bandwidth from that server, so its considered unfair.
Update: as of 09-2014 there is a CDN version available:
http://www.jsdelivr.com/projects/jquery.fancytree
https://cdnjs.com/libraries/jquery.fancytree
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I had my slideshow running fine several months ago, then after not using it for a while i saw the slideshow no longer working. I have also noticed other jquery transisions no longer work. Pretty sure I did not edit any coding etc and am not sure what has caused the error. I am rather inexperienced so not sure if I have missed something basic.
http://www.michaeldank.com/index.html
Looks like your JQuery was changed to load from local sources. These source lines are from your website:
<script type="text/javascript" src="file:///E|/Office/Design/Websites/grayscalecreative.com.au/js/jquery-1.5.2.js"></script>
<script type="text/javascript" src="file:///E|/Office/Design/Websites/grayscalecreative.com.au/js/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript" src="file:///E|/Office/Design/Websites/grayscalecreative.com.au/js/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="file:///E|/Office/Design/Websites/grayscalecreative.com.au/js/jquery.easing-1.3.pack.js"></script>
Probably just fixing those'll solve things.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I cannot seem to get the GET A QUOTE forms the same.
I want the form on the homepage to look the same as the one on fleet.html
They have the same exact code.
The form on the homepage is in the bottom left of the page.
http://demo.cipslimoshuttle.com/
http://demo.cipslimoshuttle.com/fleet.html
It doesn't look like there's a reference to jquery.jqtransform.js in the root site HTML and also no code to actually do the transformation from standard controls to the pretty jqTransform controls.
So, adding
<script src="js/jquery.jqtransform.js"></script>
and
<link rel="stylesheet" type="text/css" media="screen" href="css/jqtransform.css">
to the head, and changing the ready code to
<script>
$(document).ready(function(){
$('.camera_wrap').camera();
$('#form-2').jqTransform({imgPath:'../images/'});
});
</script>
will fix it. (It does when I do it via the Developer console!)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
weird thing.
my http://jsfiddle.net/48Hpa/19/ doesn't work when I write all to html http://jsbin.com/AYEQEJE/1/edit I checked everything . I have all the DOM ready things and so, too.
From your JSbin, it seems you're missing to add jQuery UI css file.
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"/>
Once added it is working. See the corrected JSBin link
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have provided javascript in page(http://nextrelease.officetimer.com). Javascript for questions and answers below is not working. I have given javascipt with scr=engine1/accordion.js. Please check give solution for it. Thanks.
You are not allow to have </script> in your javascript
<script>!window.jQuery && document.write('<script src="engine1/accordion.js"></script>')</script>
should be
<script>!window.jQuery && document.write('<script src="engine1/accordion.js"><\/script>')</script>
you added
<script src="engine1/accordion.js"></script>
before the jquery.js
You should add your Accordin.js after jquery.js
like
<script src="js/libs/jquery-1.7.2.min.js"></script>
<script src="engine1/accordion.js"></script>