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
Related
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.
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
In his video tutorail
http://net.tutsplus.com/tutorials/php/codeigniter-from-scratch-day-1/
the author goes to the Codegnitor web site. At first (1:32) the site looks strange (like it did not have any CSS behind it), but when he refreshes it once more the site looks like it should (1:37).
Does anyone know what is the mechanism behind it? I guess that JavaScript calls CSS. Can anyone give me some more details/examples.
Namely I would like to have my site working just like that.
CSS gets activated by 2 possible methods.
Invocation by DOM when the html file is parsed.
Invocation of CSS forcefully by JavaScript's functions.
On this video second method has been used.
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
While running Html file which uses React.js to display timer, its giving this error in Internet explorer
If you can see this, React is not working right. If you checked out the source from GitHub make sure to run grunt.
I tried to search solution on google but i didnt got any.
It appears React.js only supports Internet Explorer 8 and above. Are you using an older version of IE?
"At Facebook, we support older browsers, including IE8." http://facebook.github.io/react/docs/working-with-the-browser.html
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'm looking for a small and lightweight way to get the screenshot of a website with just the URL. I've heard you can do this with XML/PHP, or even use another service to return the image. However, is there a fast simple way to do this? Preferably in Js? Also, to clarify, my project is going to be dynamically generating these thumbnails.
You can't do this with html/php alone. You need a browser to interpret the content on the page and get a screenshot. Some sort of software. OR use a 3party service
http://www.browserstack.com/screenshots/api looks good, I haven't tried them though