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!)
Related
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 ;).
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
So I'm guessing this happens with.. many.. somewhat old-tech things like this, but I have a javascript only website based on backbone, and have shopping pages I'd like to get some validated badges on, case in point: [A Comodo Trustlogo][1]
Basically, when I follow the instructions, it completely wipes out the page, replacing the entire body with a white page and the logo itself, instead of kindly inserting itself into a div or whatnot.
Anyone have an idea on how to get it to inline properly?
This is to do with where you have placed your Comodo code. Where you've placed it, both document.write and document.writeln will destroy the page.
Move it to the top of the <body> element or whereever in the <body> element (not outside, not in <head>, not directly in <html> nor on the outside) you prefer.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
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.
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
Improve this question
I that small description of the page should appear when user enters the url.
I have textbox where user enters url. I want when url is entered small textarea and div should appear which gives the preview of that url page content.
Here is jQuery library using PHP with curl doing just that:
https://github.com/LeonardoCardoso/Facebook-Link-Preview
Facebook takes the image from the this element in your header:
<link rel="image_src" href="http://yoursite.com/thumbImage.jpg" >
You can also use the specific meta tag for facebook:
<meta property='og:image' content='http://yoursite.com/thumbImage.jpg'/>
Documentation here.
If none of them exist, then it it will take the first image on your site.
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