Hot answers tagged javascript
17
My take is that it's virtually no effort, and certainly not noise, to just throw this at the end of any answer that uses ES5 features:
Note that the above uses __ from ES5. Not all browsers have it yet, if you need to support them you'll need to supply it (perhaps via es5-shim.js or similar).
Three reasons:
People asking JavaScript questions are a ...
16
No. Keeping the site fast (using CDNs with no cookies and long expiry times) for 99% of users far outweighs the importance of appeasing 1% of extremely persnickety users.
Graceful degradation only goes so far, and once you're at the point of appeasing people who don't want to run JavaScript code or third-party scripts you're looking into seriously degrading ...
14
One moment there:
only works when JavaScript is disabled by something
browser-related (the browser itself or an extension). It doesn't work
when JS is disabled by a firewall, for example
So you want us to defensively code our site because you suspect there are firewalls out there that strip out SCRIPT tags and neglect to blank out the NOSCRIPT ...
14
Originally the system messages was set via jQuery, but "flashed" unpleasantly. Using document.write avoided this.
Now, the old jQuery code was last tested more than a year ago (a few jQuery versions ago, and many of the then supported browsers are no longer supported) so this may no longer be a valid concern. However, the code works so we've had no reason ...
11
My first guess is that RunExe('C:\Windows\System32\cmd.exe /c start winword.exe'); looks suspicious to some heuristic since it's similar to strings that occur in exploits.
In addition you have code in there that instantiates an ActiveX object, once again suspicious:
MyObject = new ActiveXObject("WScript.Shell")
So I'd say it's just yet another false ...
11
Edit: I like the suggestion of the stalker and the troll, so we've changed the message to a variant of it:
{sitename} requires external JavaScript from another domain, which is blocked or failed to load.
We're not going to add the same for sstatic, because that would mean serving extra stuff for every request in the network, and if sstatic.net ...
11
We are trying to block a scraper that is scraping against our terms & conditions.
This bug was an unforeseen consequence of trying to ban them client side - not realizing that atob is not supported by IE 7/8/9 (and 10 in 7/8/9 mode).
I am reverting the change and deploying as we speak.
Meta is back to normal now... as is the rest of the network.
10
The 'Stack Overflow' way is to narrow down your code to the relevant portions. See Short, Self contained, Correct, Example. Readers typically won't spend a lot of time hunting down the bug in YOUR code, especially if you just upload it and state something along the lines of 'this doesn't work'.
Regarding the method to post that complete example, I have ...
10
There are two kinds of programmers (no, this isn't that binary joke):
Those looking for the lowest effort solution.
Those who are mildly obsessed with finding the best solution (in pragmatic terms), and understanding why that solution works.
Changing the attitude of group #1 is a daunting task. I agree it's a problem, and it is prevalent in much more ...
10
I hate to sound all lawyerish - but I can see two problems with the script (were it adopted more commonly):
if corporations etc get their icon added for free, there would be little incentive to sponsor a tag; and since I value SO, I have to respect that they need paying sponsors. But I think as an advert for tag sponsorship it works very well "your logo ...
10
Regarding line breaks, it is covered here: Should the markdown renderer treat a single line break as <br>?
Regarding supporting our editor, both wmd and showdown live here. Balpha is in the midst of a refactor at the moment, we should upload latest in the next few weeks and have 100% parity with the public version. At that point you can clone and ...
9
I can see your previous account was deleted, but I'm not sure who did it.
I am sure that your answers were flagged as spam by members of the community, and that (probably) a mod saw you were a new account, had only answered three questions (one recent, but two from over a year ago, which is a hallmark of spammers), all of which referred people to your ...
8
The reason I personally, albeit only on occasion, answer JavaScript-tagged questions with a jQuery solution is a simple mistake, every now and then I see a question that would be easy (-ish) to solve with jQuery and, for some reason, don't notice that the question didn't feature the jQuery tag.
It is, on this type of occasion, important to remember Hanlon's ...
8
If you want to see questions with zero (0) answers, search with this:
answers:0
If you want to see those with no accepted answers:
hasaccepted:0
If you want to see both zero and non-accepted:
answers:0 hasaccepted:0
If you want to narrow it down to a tag, put that in:
[hash] answers:0 hasaccepted:0
When the page is loaded, click one ...
8
Try wmd-new at Google Code or the Stack Overflow fork of WMD at GitHub.
Here's a quick demo of wmd-new (pulled from GitHub), with the styles slightly modified to look closer to those on SO. There are still a few differences (hover color on buttons, help question mark, etc), but it's really just a matter of tweaking the styles; the styles on Stack Overflow ...
8
I just successfully asked a question on our dev tier with JavaScript disabled in Firefox 3.6.
However, I did notice that the mandatory "How to Ask" page for new users with <= 10 reputation ...
http://stackoverflow.com/questions/how-to-ask
... does require JavaScript to proceed, but for a trivial reason: it submits the form through JavaScript.
So to ...
8
While I am a strong proponent of JavaScript education myself, and learning how to get stuff done without relying on thousands of lines of external code...
Let me play the devil's advocate.
Let's say you're writing an application that has to only run on modern browsers (old IE support is a big selling point for many) . It is fairly simple and involves ...
8
I dislike this proposal cause it cascades.
What about cdn.sstatic.net? Should we add a fallback to sstatic.net? Perhaps the network is totally disallowing remote resources, what about a second level fallback to stackoverflow.com?
What happens if downloading stuff from Google is taking 30 seconds to time out? Now the fallback is going to be mega delayed.
...
8
(Sorry for abusing the answer box here, but I thought this might be helpful in tracking down where the problem lies. I'm using comment votes as an example, it should apply to all the other elements Matthew Read mentioned)
When I load a Music.SE question for the first time (and comment voting is not working), I can look in Chrome dev tools and see this ...
7
Confirmed (inconsistently): the text does not go away when the text field is clicked in (build version 6176) -- Firefox 3.5.7, Mac OSX 10.6.2. This is not always reproducible; it occurs about 75% of the time at the http://stackoverflow.com/questions/ask page.
6
This will be fixed in the next build.
Let me add a little clarification here: Most internet-explorer-9 bug reports here on meta currently have a status-declined tag, and this has been interpreted by some to mean "Shut up, we don't give a §$%&."
But of course IE9 will be considered a supported browser once it comes out, and we will revisit (and, as you ...
6
This could be caused by Google's CDN being blocked, and hence its jQuery not being available:
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
For some time, the JavaScript also outputted “Stack Overflow works best with JavaScript enabled” when jQuery was not loaded. In March 2011 it became more ...
6
Because jQuery makes it much easier to write Javascript.
Answerers generally do not have much time and would prefer to write a single line that uses jQuery and will work in all browsers than to write 10 lines that don't use jQuery and won't work in IE.
The bigger issue is askers who ask questions about their "jQuery code" which is actually a simple (but ...
6
What about changing the message into something like:
{sitename} works best with access to {domain}, which seems to be blocked or failed to load.
It would be great if this is doable for both ajax.googleapis.com (rephrasing the existing jQuery warning) and for sstatic.net† (not currently implemented). Bonus if it could even check if reCAPTCHA's resources ...
6
If you submitted patches to the Google Prettify project that were approved, then you could indirectly improve the syntax highlighting found on StackOverflow if SO incorporated them downstream.
However, my gut feeling is you should take a look at the Prettify Hints supported, which can vastly improve the syntax highlighting in various posts.
If that fails, ...
6
You can contribute here by in a very positive way by describing what behaviors you think are bugs and filing them as bug questions or clearly defining desired changes in behavior and filing them as feature-request questions.
One of the hardest parts of the software process for a stable and evolved software product is getting consensus that what you think is ...
6
This isn't a problem with SO, people just need to read the question a little more carefully. If it doesn't mention jQuery then don't answer with jQuery or if you are going to answer with it then just give reasons why you are suggesting it, e.g. "In some circumstances it allows you to only have to write 10 lines of code instead of 100."
This is also related ...
6
After seeing that nobody else has this problem I went through my browser extensions one by one.
It turned out that the popular privacy extension Ghostery 4.0.0 was responsible!
I'm now looking for a solution ...
So Ghostery does in fact explicitly bock Google AJAX Search API.
I'm not exactly sure why but they have a page on it that doesn't seem to really ...
5
The answer is in this title of your own question: "Why close the discussion ...". From the Stack Overflow FAQ:
If your motivation for asking the question is “I would like to participate in a discussion about __”, then you should not be asking here.
Also,
every answer is equally valid: “What’s your favorite __?”
These open ended questions are ...
5
As the question currently stands, it is a poll. It asks people for "good" libraries that do X, Y and Z. SO is not a compendium of expert product recommendations, so a question that asks for nothing but a library is outside the scope of the site.
Additionally, questions of the sort you are describing end up with answers like this:
have a look at ixedit, ...
Only top voted, non community-wiki answers of a minimum length are eligible


