weird thing. working fiddle doesn't work on html [closed] - javascript

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

Related

JQuery stopped working on all transisions [closed]

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.

Mysteriously Undefined Function [closed]

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 8 years ago.
Improve this question
I've been looking at this for a long time now, and had several other people look over it. None of whom can spot what's causing this issue.
Something is causing the function validate() to be undefined by the time it gets to the body of the page. I belive there must be some error earlier in the program that is causing the browser to stop processing javascript before then, but I can't find it.
Full JS content:
http://pastebin.com/9b0pwktA
Any insight would be greatly appreciated
I fixed that code (at least visibility of validate method), by removing:
language="text/javascript"
from
<script language="text/javascript">
to make:
<script>
Try that out!
Edit...
There are numerous other bugs, but I targeted the specific problem the question was asking about.

Can not match forms [closed]

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

HTML spacing issue - all browsers [closed]

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 have built this sample gallery, but for some reason there is vertical spacing between the images which I want to remove. I can not see any where that will remove the spacing:
http://alexconner.co.uk/gallery_test/
That's a problem with the linebreaks between the li tags
just try that:
<li>img1</li><li>img2</li>
instead of pulling every single tag on every single line

javascript file dont work on IE9 [closed]

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 must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Improve this question
my site javascript functions normaly work on all browsers except internet explorer 9 , in i7 & ie8 also work normaly.
After a long testing i came to the conclusion that,js file just does not work, but why ?
The interesting thing is that in some cases it works fine, but I do not know in which cases.
After updating the second time is always working properly.
site link is http://calypsoaccessories.com/
remove all console.log from your script

Categories