User some - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:31:16Z http://stackoverflow.com/feeds/user/36866 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1475522/margin-not-acting-properly-in-firefox/1475563#1475563 0 Answer by some for Margin not acting properly in Firefox some 2009-09-25T05:25:14Z 2009-09-25T05:25:14Z <pre><code>#main-navigation { clear:both; display:block; margin:0 -10px 48px; position:relative; } </code></pre> <p>You have 3 values in the margin above. It is supposed to work, but if you specify all 4 of them like 0 -10px -10px 48px; it seams to work better.</p> <pre><code>#main-navigation { clear:both; display:block; margin:0 -10px -10px 48px; position:relative; } </code></pre> http://stackoverflow.com/questions/378365/finding-dom-node-index/378471#378471 3 Answer by some for Finding DOM node index some 2008-12-18T16:49:26Z 2009-08-27T19:04:08Z <p>A little shorter, expects the element to be in elem, returns k.</p> <pre><code>for (var k=0,e=elem; e = e.previousSibling; ++k); </code></pre> <p><em>After a comment from <a href="http://stackoverflow.com/users/95195/">Justin Dearing</a> I reviewed my answer and added the following:</em></p> <p>Or if you prefer "while": </p> <pre><code>var k=0, e=elem; while (e = e.previousSibling) { ++k;} </code></pre> <p>The original question was how to find the index of an existing DOM element. Both of the examples above expects <strong>elem</strong> to be an DOM element and that the element still exists in the DOM. They will fail if you give them an null object or an object that don't have <strong>previousSibling</strong>. A more fool-proof way would be something like this:</p> <pre><code>var k=-1, e=elem; while (e) { if ( "previousSibling" in e ) { e = e.previousSibling; k = k + 1; } else { k= -1; break; } } </code></pre> <p>If <strong>e</strong> is <strong>null</strong> or if <strong>previousSibling</strong> is missing in one of the objects, <strong>k</strong> is -1.</p> http://stackoverflow.com/questions/576638/chrome-doesnt-support-querystring/578497#578497 3 Answer by some for Chrome Doesn't Support QueryString some 2009-02-23T17:21:10Z 2009-03-11T19:40:15Z <p>The parseQueryString at <a href="http://safalra.com/web-design/javascript/parsing-query-strings/" rel="nofollow">http://safalra.com/web-design/javascript/parsing-query-strings/</a> has some bugs:</p> <ul> <li>Multiple + are not replaced with space.</li> <li>Multiple unescaped equal-sign causes content to be lost.</li> <li>Empty input results in an object with key "".</li> <li>Multiple empty keys isn't discarded</li> </ul> <p>In the function below the bugs above has been removed and has been tested with FF3, IE7, Opera9 and Chrome1. </p> <pre><code>function parseQueryString(input){ var out={}, decode=decodeURIComponent, s=input||location.search||"", kv=("?"===s.charAt(0)?s.slice(1):s).replace(/\+/g," ").split(/[&amp;;]/g), idx=-1,key,value; while(++idx&lt;kv.length){ if (kv[idx]==="") continue; value=kv[idx].split("="); key=decode(value.shift()); (out[key]||(out[key]=[])).push(decode(value.join("="))); } return out; } </code></pre> <p>The function above (and the original) expects only the query part of the url: From the question mark to the end of the string or to the first #. If no argument is supplied it will automatically extract the query part from the windows current url.</p> <p>The result is an object with the keys from the query string, and the value of all keys is an array of all the values.</p> <pre><code>var data = parseQueryString("?a=test1&amp;a=test2&amp;b=test3"); //Result of data: { a:["test1","test2"], b:["test3] } </code></pre> <p>Some examples:</p> <pre><code>// Alert all values of the a key: if (data.a &amp;&amp; data.a.length) { for (var i=0;i&lt;data.a.length;++i) alert(data.a[i]); } // Get the first value of a-key: var value_a = data.a &amp;&amp; data.a[0]; // Get the first value of a-key or default: var value_a = data.a &amp;&amp; data.a[0] || "default"; </code></pre> http://stackoverflow.com/questions/623299/can-the-x-requested-with-http-header-be-spoofed/623302#623302 6 Answer by some for Can the "x-requested-with" http header be spoofed? some 2009-03-08T09:18:41Z 2009-03-08T11:49:47Z <p>Every header can be spoofed. Any header that starts with x- is non-standard.</p> http://stackoverflow.com/questions/607124/text-input-with-descriptive-text/607243#607243 1 Answer by some for Text Input with descriptive text some 2009-03-03T17:03:57Z 2009-03-03T17:14:32Z <blockquote> <p>I don't want to actually have the word 'Search' be the value of the text input though, because it is somewhat important that the user can search for the word search.</p> </blockquote> <p>In that case you could use a background-image on the text-input. You could define in CSS that :focus should not have the background and that the unfoucused should have it. This solution works even if javascript is disabled.</p> <p>Update: Tested and work with FF, Opera and Chrome but not IE, since IE don't support :focus, but IE supports the background image, so if the text is light gray is should not be a problem. And you can always use jquery to change what classed the input field should have.</p> http://stackoverflow.com/questions/605133/how-do-i-get-the-first-day-of-the-previous-week-from-a-date-object-in-javascript/605163#605163 1 Answer by some for How do I get the first day of the previous week from a date object in JavaScript? some 2009-03-03T05:00:04Z 2009-03-03T05:10:16Z <p>First day of week can be either Sunday or Monday depending on what country you are in:</p> <pre><code>function getPrevSunday(a) { return new Date(a.getTime() - ( (7+a.getDay())*24*60*60*1000 )); }; function getPrevMonday(a) { return new Date(a.getTime() - ( (6+(a.getDay()||7))*24*60*60*1000 )); }; </code></pre> <p>If you want to set a dateobject to the previous sunday you can use:</p> <pre><code>a.setDate(a.getDate()-7-a.getDay()); </code></pre> <p>and for the previous monday:</p> <pre><code>a.setDate(a.getDate()-6-(a.getDay()||7)); </code></pre> http://stackoverflow.com/questions/598878/how-can-i-access-local-scope-dynamically-in-javascript/599109#599109 2 Answer by some for How can I access local scope dynamically in javascript? some 2009-03-01T02:22:48Z 2009-03-01T02:22:48Z <p>No, like <a href="http://stackoverflow.com/users/45433/crescentfresh">crescentfresh</a> said. Below you find an example of how to implement without eval, but with an internal private object.</p> <pre><code>var test = function () { var prv={ }; function prop(name, def) { prv[name] = def; return function(value) { // if (!value) is true for 'undefined', 'null', '0', NaN, '' (empty string) and false. // I assume you wanted undefined. If you also want null add: || value===null // Another way is to check arguments.length to get how many parameters was // given to this function when it was called. if (typeof value === "undefined"){ //check if hasOwnProperty so you don't unexpected results from //the objects prototype. return Object.prototype.hasOwnProperty.call(prv,name) ? prv[name] : undefined; } prv[name]=value; return this; } }; return pub = { a:prop('a', 1), b:prop('b', 2), c:prop('c', 3), d:function(){ //to show that they are accessible via two methods //This is a case where 'with' could be used since it only reads from the object. return [prv.a,prv.b,prv.c]; } }; }(); </code></pre> http://stackoverflow.com/questions/597769/how-do-i-create-an-abstract-base-class-in-javascript/597984#597984 0 Answer by some for How do I create an abstract base class in JavaScript? some 2009-02-28T12:50:28Z 2009-02-28T14:02:06Z <p>Do you mean something like this:</p> <pre><code>function Animal() { //Initialization for all Animals } //Function and properties shared by all instances of Animal Animal.prototype.init=function(name){ this.name=name; } Animal.prototype.say=function(){ alert(this.name + " who is a " + this.type + " says " + this.whattosay); } Animal.prototype.type="unknown"; function Cat(name) { this.init(name); //Make a cat somewhat unique var s=""; for (var i=Math.ceil(Math.random()*7); i&gt;=0; --i) s+="e"; this.whattosay="Me" + s +"ow"; } //Function and properties shared by all instances of Cat Cat.prototype=new Animal(); Cat.prototype.type="cat"; Cat.prototype.whattosay="meow"; function Dog() { //Call init with same arguments as Dog was called with this.init.apply(this,arguments); } Dog.prototype=new Animal(); Dog.prototype.type="Dog"; Dog.prototype.whattosay="bark"; //Override say. Dog.prototype.say = function() { this.openMouth(); //Call the original with the exact same arguments Animal.prototype.say.apply(this,arguments); //or with other arguments //Animal.prototype.say.call(this,"some","other","arguments"); this.closeMouth(); } Dog.prototype.openMouth=function() { //Code } Dog.prototype.closeMouth=function() { //Code } var dog = new Dog("Fido"); var cat1 = new Cat("Dash"); var cat2 = new Cat("Dot"); dog.say(); // Fido the Dog says bark cat1.say(); //Dash the Cat says M[e]+ow cat2.say(); //Dot the Cat says M[e]+ow alert(cat instanceof Cat) // True alert(cat instanceof Dog) // False alert(cat instanceof Animal) // True </code></pre> http://stackoverflow.com/questions/574584/javascript-check-if-method-prototype-has-been-changed/574741#574741 2 Answer by some for Javascript - check if method prototype has been changed? some 2009-02-22T11:05:47Z 2009-02-23T04:22:59Z <p>If you do a toString() on a function you get the source code of the function. For native functions, FF, IE, Opera and Chrome returns a function with the body [native code]. However, Chrome has most functions implemented in javascript and will return the source for most functions (Object.constructor is one of the few native functions in Chrome that does return [native code])</p> <p>Below you find a function with a regexp that checks for [native code]. (there is no need to call toString() since it is done automatically when the function isn't called). It is tested with FF3, IE7, Opera 9.6 and Chrome 1. But as I said, since Chrome does return the real source code for most functions it isn't useful to test it in that browser.</p> <pre><code>function isNative(func) { return /^\s*function[^{]+{\s*\[native code\]\s*}\s*$/.test(func); } alert(isNative(Array.prototype.push)); </code></pre> <p><strong>Update</strong></p> <p>The above code will of course not detect if a native method is replaced with some other native method, like <em>Array.prototype.push = Math.abs</em>. If you want to detect that kind of change, or if methods of your own objects are changed, you must store the original method in a variable, then run the function that you suspect changes it, followed by a compare with the stored methods.</p> <p>However, after reading the comment from the op on <a href="http://stackoverflow.com/users/784/olliej">olliej</a> <a href="http://stackoverflow.com/questions/574584/javascript-check-if-method-prototype-has-been-changed/574666#574666">answer</a>, it is quite clear that the OP wanted to know how to detect if methods on the native objects has been changed. If they are changed they are usually not replaced with another native function but with some new code, usually to add methods that the browser don't have natively, or to change the behavior to be compatible with the expected standard. In that case the code above will work in FF, IE and Opera but not Crome.</p> <p>If you want to detect any type of changes of the methods the following code might be of use. The following function creates an object with two methods: <em>save</em> and <em>compare</em>. <em>save</em> is automatically called if arguments is supplied when the object is created. <em>save</em> expects two or more arguments where the first is the object and the rest is the method names to be saved. The reason you must supply the names of the methods is because most internal objects has the "<em>do not enumerate</em>"-flag set on the methods. </p> <pre><code>function Cmpobj() { if (this.constructor !== arguments.callee){ throw SyntaxError("Constructor called as function"); } var srcobj, methods=[]; this.save=function(obj) { var undef; //Local undefined srcobj=obj; for (var i=arguments.length -1; i&gt;0; --i) { var name = arguments[i]; //Push an object on the array without using push methods[methods.length] = { name:name, func:typeof obj[name] === "function" ? obj[name]:undef }; } } this.compare=function(obj) { var changed=[]; obj = obj || srcobj; for (var i=methods.length-1; i&gt;=0; --i) { if (methods[i].func !== obj[methods[i].name]) { changed[changed.length]=methods[i].name; } } return changed; } if (arguments.length) this.save.apply(this,arguments); } // Creating a compare object. The first parameter is the object, // followed by up to 254 method names. var saved = new Cmpobj(Array.prototype,"pop","push","slice"); //Do some change Array.prototype.pop = Array.prototype.push; // Compare if something is changed alert(saved.compare().join(", ")); </code></pre> http://stackoverflow.com/questions/572880/javascript-pointer-function/572902#572902 3 Answer by some for javascript pointer function some 2009-02-21T12:35:48Z 2009-02-21T12:35:48Z <p>This is what happens with your code:</p> <ul> <li>Defining a function called init with three parameters that will be alerted when the function is called.</li> <li>Calling the function init with parameters 5,6,7 (an alert will popup) and assign the result (undefined) to String.prototype.add</li> <li>Calling the function init with parameters 5,6,7 (an alert will popup) and assign the result (undefined) to window.onload</li> </ul> <p>If the code above was executed before the window.onload event was fired, nothing will happen when it is fired, because it is set to undefined.</p> http://stackoverflow.com/questions/572604/javascript-how-to-extend-array-prototype-push/572631#572631 10 Answer by some for Javascript - How to extend Array.prototype.push()? some 2009-02-21T08:24:50Z 2009-02-21T08:54:23Z <p>Since push allows more than one element to be pushed, I use the arguments variable below to let the real push method have all arguments.</p> <p>This solution only affects the arr variable:</p> <pre><code>arr.push = function (){ //Do what you want here... return Array.prototype.push.apply(this,arguments); } </code></pre> <p>This solution affects all arrays. I do not recommend that you do that.</p> <pre><code>Array.prototype.push=(function(){ var original = Array.prototype.push; return function() { //Do what you want here. return original.apply(this,arguments); }; })(); </code></pre> http://stackoverflow.com/questions/385367/whats-the-difference-between-hit-f5-and-ctrl-f5-in-browser/385491#385491 29 Answer by some for What's the difference between hit "F5" and "Ctrl + F5" in browser? some 2008-12-22T03:40:59Z 2009-02-20T18:09:35Z <p>It is up to the browser but they behave in similar ways.</p> <p>I have tested FF, IE7, Opera and Chrome.</p> <p>F5 usually updates the page only if it is modified. The browser usually tries to use all types of cache as much as possible and adds an "If-modified-since" header to the request. Opera differs by sending a "Cache-Control: no-cache"</p> <p>CTRL-F5 is used to force an update, dissregaring any cahce. IE7 add an "Cache-Control: no-cache" as does FF who also add "Pragma: no-cache". Crome does a normal "If-modified-since" and Opera ignores the key. </p> <p>If I remember correctly it was Netscape who was the first browser to add support for cache-control by adding "Pragma: No-cache" when you pressed CTRL-F5.</p> <p><strong>Edit:</strong> Updated table</p> <p>The table below is updated with information on what will happen when the browsers refresh-button is clicked (after a request by <a href="http://stackoverflow.com/users/3043/">Joel Coehoorn</a>), and the "max-age=0" Cache-control-header. </p> <pre><code>+------------+--------------------------------------------+ | | Firefox 3.0.6 (WinXP)| | | +-----------------------------------------+ | | | MSIE 7.0.5730.11 (WinXP)| | | | +--------------------------------------+ | | | | Crome 1.0.154.48 (WinXP)| | | | | +-----------------------------------+ | | | | | Opera 9.61 (WinXP)| | | | | | +--------------------------------+ | | | | | | | +------------+--+--+--+-----------------------------------+ | F5|IM|I |IM|C | | | SHIFT-F5|- |- |IM|- | Legend: | | CTRL-F5|CP|C |IM|- | I = "If-Modified-Since" | | ALT-F5|- |- |- |C | P = "Pragma: No-cache" | | ALTGR-F5|- |I |- |- | C = "Cache-Control: no-cache" | +------------+--+--+--+--+ M = "Cache-Control: max-age=0" | | CTRL-R|IM|I |IM|C | - = ignored | |CTRL-SHIFT-R|CP|- |- |- | | +------------+--+--+--+--+ | | Click|IM|I |IM|C | With 'click' I refer to a | | Shift-Click|CP|I |IM|C | mouse click on the browsers | | Ctrl-Click|IM|C |IM|C | refresh-icon. | | Alt-Click|IM|I |IM|C | | | AltGr-Click|IM|I |IM|- | | +------------+--+--+--+--+--------------------------------+ </code></pre> http://stackoverflow.com/questions/569488/is-it-possible-to-change-the-hotspot-of-a-mouse-cursor-on-a-web-page/569564#569564 3 Answer by some for Is it possible to change the hotspot of a mouse cursor on a web page? some 2009-02-20T13:28:39Z 2009-02-20T13:28:39Z <p>I have not tested it, got it from <a href="https://developer.mozilla.org/en/Using_URL_values_for_the_cursor_property" rel="nofollow">developer.mozilla.org</a>:</p> <p>Support for the CSS3 syntax for cursor values got added in Gecko 1.8beta3; it therefore works in Firefox 1.5. It allows specifying the coordinates of the cursor's hotspot, which will be clamped to the boundaries of the cursor image. If none are specified, the coordinates of the hotspot are read from the file itself (for CUR and XBM files) or are set to the top left corner of the image. An example of the CSS3 syntax is: </p> <pre><code>cursor: url(foo.png) 4 12, auto; </code></pre> <p>Link to <a href="http://www.w3.org/TR/css3-ui/#cursor" rel="nofollow">CCS3 cursor</a></p> http://stackoverflow.com/questions/566564/javascript-functions-math-round0-vs-tofixed0-and-browser-inconsistencies/566779#566779 1 Answer by some for Javascript functions Math.round(0) vs toFixed(0) and browser inconsistencies some 2009-02-19T19:28:02Z 2009-02-20T00:11:37Z <p>I think FF is doing the right thing with toFixed, since step 10 below says "If there are two such n, pick the larger n."</p> <p>And as <a href="http://stackoverflow.com/users/9254/">Grant Wagner</a> said: Use <em>Math.ceil(x)</em> or <em>Math.floor(x)</em> instead of <em>x.toFixed()</em>.</p> <p>Everything below is from the <a href="http://www.ecma-international.org/publications/standards/Ecma-262.htm" rel="nofollow">ECMAScript Language Specification</a>:</p> <h2>15.7.4.5 Number.prototype.toFixed (fractionDigits)</h2> <p>Return a string containing the number represented in fixed-point notation with fractionDigits digits after the decimal point. If fractionDigits is undefined, 0 is assumed. Specifically, perform the following steps:</p> <pre><code>1. Let f be ToInteger(fractionDigits). (If fractionDigits is undefined, this step produces the value 0). 2. If f &lt; 0 or f &gt; 20, throw a RangeError exception. 3. Let x be this number value. 4. If x is NaN, return the string "NaN". 5. Let s be the empty string. 6. If x ≥ 0, go to step 9. 7. Let s be "-". 8. Let x = –x. 9. If x ≥ 10^21, let m = ToString(x) and go to step 20. 10. Let n be an integer for which the exact mathematical value of n ÷ 10^f – x is as close to zero as possible. If there are two such n, pick the larger n. 11. If n = 0, let m be the string "0". Otherwise, let m be the string consisting of the digits of the decimal representation of n (in order, with no leading zeroes). 12. If f = 0, go to step 20. 13. Let k be the number of characters in m. 14. If k &gt; f, go to step 18. 15. Let z be the string consisting of f+1–k occurrences of the character ‘0’. 16. Let m be the concatenation of strings z and m. 17. Let k = f + 1. 18. Let a be the first k–f characters of m, and let b be the remaining f characters of m. 19. Let m be the concatenation of the three strings a, ".", and b. 20. Return the concatenation of the strings s and m. </code></pre> <p>The length property of the toFixed method is 1.</p> <p>If the toFixed method is called with more than one argument, then the behaviour is undefined (see section 15).</p> <p>An implementation is permitted to extend the behaviour of toFixed for values of fractionDigits less than 0 or greater than 20. In this case <em>toFixed</em> would not necessarily throw <strong>RangeError</strong> for such values.</p> <p>NOTE The output of <em>toFixed</em> may be more precise than <em>toString</em> for some values because <em>toString</em> only prints enough significant digits to distinguish the number from adjacent number values. For example, (1000000000000000128).toString() returns "1000000000000000100", while (1000000000000000128).toFixed(0) returns "1000000000000000128".</p> http://stackoverflow.com/questions/555726/a-good-javascript-api-reference-documentation-related-to-browsers-and-dom/555780#555780 3 Answer by some for A good Javascript API reference documentation related to browsers and DOM some 2009-02-17T07:15:31Z 2009-02-17T07:15:31Z <p>How about the standards?</p> <ol> <li><a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/DOM2-Core.pdf" rel="nofollow">DOM2 Core</a> (W3C)</li> <li><a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/DOM2-Events.pdf" rel="nofollow">DOM2 Events</a> (W3C)</li> <li><a href="http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/DOM2-HTML.pdf" rel="nofollow">DOM2 HTML</a> (W3C)</li> <li><a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/DOM2-Style.pdf" rel="nofollow">DOM2 CSS</a> (W3C)</li> </ol> <p>And for javascript itself:</p> <ol> <li><a href="http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf" rel="nofollow">Standard ECMA-262 ECMAScript Language Specification</a> (ECMA)</li> </ol> http://stackoverflow.com/questions/517799/what-is-the-problem-with-this-ajaxwith-prototype/551391#551391 2 Answer by some for What is the problem with this ajax(with prototype)? some 2009-02-15T18:51:49Z 2009-02-15T18:51:49Z <p>This is a long shot, but without more information and seeing more of your code I have to ask this so you could rule it out: Could it have something to do with the user double-clicking on the link and creating two rapid requests? <em>(Once upon a time I got bitten by &lt;input type="image" onclick="submit();"&gt; both run the onclick and submitted the form)</em></p> <pre><code>function test() { voteAjax('content','up','89'); voteAjax('content','up','89'); } </code></pre> <p>(have your link call the test function above)</p> <p>Normally you want to use asynchronous connections since that won't lock the UI, however this is a case where you could try synchronous to make sure you only do one request at the time. (a nonblocking solution is to set a flag or disable the link/button while the request is processed)</p> <p>BTW, I too suggest that you send an object instead of a string as the parameters, since prototype will URIEncode it and put all &amp; at the right places. </p> http://stackoverflow.com/questions/545214/is-there-a-limit-to-the-number-of-javascript-objects-you-can-have-on-the-go-at-an/545568#545568 1 Answer by some for Is there a limit to the number of Javascript objects you can have on the go at any one time? some 2009-02-13T11:05:16Z 2009-02-15T08:50:14Z <p>An improved version of the script at <a href="http://blog.votanweb.com/2007/2/24/javascript_memory_limit" rel="nofollow">link text</a>. This is faster since it uses join, and lets the browser have some time to update the page evey now and then. </p> <pre><code>function allocate_mem() { var mega=[]; // Strings are stored as UTF-16 = 2 bytes per character. // Below a 1Mibi byte string is created for(var i=0; i&lt;65536; i++){ mega.push('12345678') } mega=mega.join(""); var x=document.getElementById("max_mem"); var size=0; var large=[]; function allocate( ) { ++size; //if (size&gt;400) {alert(large.join("").length/1048576); return; } large.push("."+mega.slice(0)); x.innerHTML = "max memory = " + size + " MB"; setTimeout(allocate, size %10 ? 0: 200); } allocate(); } </code></pre> http://stackoverflow.com/questions/549693/js-file-not-being-executed/549696#549696 7 Answer by some for JS File Not Being Executed some 2009-02-14T19:59:17Z 2009-02-14T19:59:17Z <p>it should be "text/javascript" not "test/javascript"</p> http://stackoverflow.com/questions/548487/how-do-i-make-a-callable-js-object-with-an-arbitrary-prototype/548591#548591 1 Answer by some for How do I make a callable JS object with an arbitrary prototype? some 2009-02-14T06:05:00Z 2009-02-14T06:15:40Z <p>The closest cross browser thing I have come is this (tested in FF, IE, Crome and Opera):</p> <pre><code>function create(fun,proto){ var f=function(){}; //Copy the object since it is going to be changed. for (var x in proto) f.prototype[x] = proto[x]; f.prototype.toString = fun; return new f; } var fun=function(){return "Hello world";} var obj={x:5} var foo=create(fun,obj); foo.x=8; alert(foo); //Hello world alert(foo.x); // 8 delete foo.x; alert(foo.x); // 5 </code></pre> http://stackoverflow.com/questions/544936/generate-a-comma-delimited-string-from-items-in-a-html-list-box-multiple-select/545038#545038 2 Answer by some for Generate a comma delimited string from items in a HTML List Box (multiple select) with Javascript some 2009-02-13T07:20:15Z 2009-02-13T07:20:15Z <p>String concatenation is very slow on IE, use an array instead:</p> <pre><code>function listBoxToString(listBox,all) { if (typeof listBox === "string") { listBox = document.getElementById(listBox); } if (!(listBox || listBox.options)) { throw Error("No options"); } var options=[],opt; for (var i=0, l=listBox.options.length; i &lt; l; ++i) { opt = listBox.options[i]; if (all || opt.selected ) { options.push(opt.value); } } return options.join(","); } </code></pre> http://stackoverflow.com/questions/542938/how-do-i-get-the-number-of-days-between-two-dates-in-jquery/544429#544429 2 Answer by some for How do I get the number of days between two dates in jQuery? some 2009-02-13T01:50:13Z 2009-02-13T02:56:33Z <p>The easiest way to get the difference between two dates:</p> <pre><code>var diff = Math.floor(( Date.parse(str2) - Date.parse(str1) ) / 86400000); </code></pre> <p>You get the difference days (or NaN if one or both could not be parsed). The parse date gived the result in milliseconds and to get it by day you have to divided it by 24 * 60 * 60 * 1000</p> <p>If you want it divided by days, hours, minutes, seconds and milliseconds:</p> <pre><code>function dateDiff( str1, str2 ) { var diff = Date.parse( str2 ) - Date.parse( str1 ); return isNaN( diff ) ? NaN : { diff : diff, ms : Math.floor( diff % 1000 ), s : Math.floor( diff / 1000 % 60 ), m : Math.floor( diff / 60000 % 60 ), h : Math.floor( diff / 3600000 % 24 ), d : Math.floor( diff / 86400000 ) }; } </code></pre> <p>Here is my refactored version of James version:</p> <pre><code>function mydiff(date1,date2,interval) { var second=1000, minute=second*60, hour=minute*60, day=hour*24, week=day*7; date1 = new Date(date1); date2 = new Date(date2); var timediff = date2 - date1; if (isNaN(timediff)) return NaN; switch (interval) { case "years": return date2.getFullYear() - date1.getFullYear(); case "months": return ( ( date2.getFullYear() * 12 + date2.getMonth() ) - ( date1.getFullYear() * 12 + date1.getMonth() ) ); case "weeks" : return Math.floor(timediff / week); case "days" : return Math.floor(timediff / day); case "hours" : return Math.floor(timediff / hour); case "minutes": return Math.floor(timediff / minute); case "seconds": return Math.floor(timediff / second); default: return undefined; } } </code></pre> http://stackoverflow.com/questions/526921/why-is-there-still-a-row-limit-in-microsoft-excel/527026#527026 5 Answer by some for Why is there still a row limit in Microsoft Excel? some 2009-02-09T02:54:36Z 2009-02-09T03:58:59Z <p><em>(updated because of error... A suggestion to everyone: don't post on SO before you are fully awake)</em></p> <p>Probably because of optimizations. Excel 2007 can have a maximum of 16 384 columns and 1 048 576 rows. Strange numbers?</p> <p>14 bits = 16 384, 20 bits = 1 048 576</p> <p>14 + 20 = 34 bits = more than one register can hold.</p> <p>But they also need to store the format of the cell (text, number etc) and formating (colors, borders etc). Assuming they use two 32-bit words (64 bit) they use 34 bits for the cell number and have 30 bits for other things.</p> <p>Why is that important? In memory they don't need to allocate all the memory needed for the whole spreadsheet but only the memory necessary for your data, and every data is tagged with in what cell it is supposed to be in.</p> http://stackoverflow.com/questions/524993/null-empty-json-how-to-check-for-it-and-not-output/525181#525181 0 Answer by some for null / empty json how to check for it and not output? some 2009-02-08T05:06:02Z 2009-02-08T05:06:02Z <p>I'm not completely sure of what you want to do... you say that you don't want to pass them on to other functions so I assume you want to delete them:</p> <pre><code>var data = {a:"!",b:"null", c:null, d:0, e:"", hasOwnProperty:"test"}; var y; for (var x in data) { if ( Object.prototype.hasOwnProperty.call(data,x)) { y = data[x]; if (y==="null" || y===null || y==="" || typeof y === "undefined") { delete data[x]; } } } </code></pre> <p>The check for hasOwnProperty is to make sure that it isn't some property from the property chain.</p> http://stackoverflow.com/questions/522897/base-64-encode-vs-loading-an-image-file/522933#522933 5 Answer by some for Base 64 encode vs loading an image file. some 2009-02-07T01:47:53Z 2009-02-07T01:47:53Z <ul> <li>Base64 encoding makes the file bigger and therefore slower to transfer.</li> <li>By including the image in the page, it has to be downloaded every time. External images are normally only downloaded once and then cached by the browser.</li> <li>It isn't compatible with all browsers</li> </ul> http://stackoverflow.com/questions/517765/what-is-the-optimal-way-to-replace-a-series-of-characters-in-a-string-in-javascri/519167#519167 3 Answer by some for What is the optimal way to replace a series of characters in a string in JavaScript some 2009-02-06T05:01:47Z 2009-02-06T22:55:51Z <p>I have benchmarked your original version, Ates Gorals hash, my improved hash, a version using switch, and the simple solution. The winner? The simple solution!</p> <p>With matching data (string of 85 chars)</p> <pre><code> original simple hash switch ag-hash FF3 194 188 250 240 424 IE7 188 172 641 906 2203 Chrome1 161 156 165 165 225 Opera9 640 625 531 515 734 </code></pre> <p>With non matching data (string of 85 chars):</p> <pre><code> original simple hash switch ag-hash FF3 39 4 34 34 39 IE7 125 15 125 125 156 Chrome1 45 2 54 54 57 Opera9 156 15 156 156 156 </code></pre> <p>(tested on my window xp laptop, 1.7GHz, ymmv)</p> <p>The simple solution:</p> <pre><code>function XMLToString(str) { return (str.indexOf("\\")&lt;0 &amp;&amp; str.indexOf("&amp;")&lt;0) ? str : str .replace(/\\34/g,'"') .replace(/\\39/g,"'") .replace(/\\62/g,"&gt;") .replace(/\\60/g,"&lt;") .replace(/\\13\\10/g,"\n") .replace(/\\09/g,"\t") .replace(/\\92/g,"\\") .replace(/\&amp;amp;/g,"&amp;"); } </code></pre> <p>Explanation: </p> <p>First there is a check if there is a backslash or ampersand (it was faster to use indexOf instead of a regexp in all browsers). If there isn't the string is returned untouched, otherwise all the replacements are executed. In this case it don't makes mush difference to cache the regexps. I tried with two arrays, one with the regexps and one with the replacements, but it was not a big difference.</p> <p>In your original version you have a test for all combinations just to detect if you should do the replacements or not. That is expensive since the regexp engine has to compare every position with every combination. I simplified it.</p> <p>I improved Ates Gorals by moving the hash object outside (so it wasn't created and thrown away for every call to the inner function), moving the inner function outside so it can be reused instead of thrown away. </p> <p><em>UPDATE 1</em> Bugfix: moved a parenthesis in the ampersand test.</p> <p><strong>UPDATE 2</strong></p> <p>One of your comments made me believe that you encode the string yourself, and if that is the case I suggest that you switch encoding to a standard one, so you can use the built in functions.</p> <p>Instead of "\dd" where dd is a decimal number, use "%xx" where xx is the hexadecimal number. Then you can use the built in decodeURIComponent that is much faster and as a bonus can decode any characters, including unicode.</p> <pre><code> matching non match FF3 44 3 IE7 93 16 Chrome1 132 1 Opera9 109 16 </code></pre> <p>.</p> <pre><code>function XMLToString_S1(str) { return (str.indexOf("%")&lt;0) ? str : decodeURIComponent(str).replace(/\x0D\x0A/g,"\n") } </code></pre> <p>So instead of having a string like "\09test \60\34string\34\62\13\10\" you have a string like "%09test %3c%22string%22%3e%0d%0a".</p> http://stackoverflow.com/questions/508752/whats-a-simple-way-to-convert-between-an-am-pm-time-to-24-hour-time-in-javascrip/508848#508848 2 Answer by some for What's a simple way to convert between an am/pm time to 24 hour time in javascript. some 2009-02-03T20:49:01Z 2009-02-03T21:11:03Z <p>Example of <a href="http://stackoverflow.com/users/12605/">tj111</a> suggestion:</p> <pre><code>$("#ConditionValue").val( ( new Date( "01/01/2000 " + $("#EventCloseTimeHour option:selected").text() + $("#EventCloseTimeMin option:selected").text() + ":00" + " " + $("#EventCloseTimeMeridian option:selected").text() ) ).toTimeString().slice(0,8)) ; </code></pre> <p>Or you can use:</p> <pre><code>hour = hour %12 + (meridian === "AM"? 0 : 12); hour = hour &lt; 10 ? "0" + hour : hour; </code></pre> http://stackoverflow.com/questions/498578/how-can-i-convert-a-date-value-in-utc-format-to-a-date-object-in-javascript/499772#499772 1 Answer by some for How can I convert a date value in UTC format to a date object in Javascript? some 2009-01-31T23:10:28Z 2009-01-31T23:10:28Z <p>You should probably use the <a href="http://www.datejs.com/" rel="nofollow">datejs</a> that <a href="http://stackoverflow.com/users/60617/">f3lix</a> recommended, however I was bored and threw together a little object that does exactly what you asked for:</p> <pre><code>var ISODate = { convert : function (input){ if (!(typeof input === "string")) throw "ISODate, convert: input must be a string"; var d = input.match(/^(\d{4})-(\d{2})-(\d{2})[T ](\d{2}):(\d{2}):(\d{2}(?:\.\d+)?)(Z|(([+-])(\d{2}):(\d{2})))$/i); if (!d) throw "ISODate, convert: Illegal format"; return new Date( Date.UTC(d[1],d[2]-1,d[3],d[4],d[5],d[6]|0,(d[6]*1000-((d[6]|0)*1000))|0,d[7]) + (d[7].toUpperCase() ==="Z" ? 0 : (d[10]*3600 + d[11]*60) * (d[9]==="-" ? 1000 : -1000)) ); }, format : function(t,utc){ if (typeof t === "string") t = this.convert(t); if (!(t instanceof Date)) throw "ISODate, format: t is not a date object"; t = utc ? [t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds()] : [t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds()]; return this.month[t[1]] + " " +this.ordinal(t[2]) + ", " +t[0] + " @ " + this.clock12(t[3],t[4]); }, month:["January","February","March","April","May","June","July","September","October","November","December"], ordinal:function(n) { return n+(["th","st","nd","rd"][(( n % 100 / 10) | 0) ===1 ? 0 : n % 10 &lt; 4 ? n % 10 : 0 ]); }, clock12:function(h24,m,s){ h24%=24; var h12 = h24 % 12; if (h12===0) h12=12; return h12 + ":" + (m&lt;10 ? "0" + m : m) + (isFinite(s) ? ":" + (s&lt;10?"0"+s:s): "") + (h24&lt;12 ? "AM":"PM"); } }; </code></pre> <p>Example:</p> <pre><code>//Shows the date in the users timezone: alert(ISODate.format("2007-09-21T14:15:34.058-07:00")); //Show the date in UTC (Timezone Z, 00:00) alert(ISODate.format("2007-09-21T14:15:34.058-07:00",true)); </code></pre> <p>Explanation:</p> <p><strong>convert</strong> takes a string as an input and returns a date object if successful or throws an exception if not. The string must be in one of the following formats:</p> <ul> <li>YYYY-MM-DDThh:mm:ss.sZ</li> <li>YYYY-MM-DDThh:mm:ss.sXaa:bb</li> </ul> <p>Where: </p> <pre><code> - YYYY is the year as an 4 digit integer - MM is the month as an 2 digit integer - DD is the date of month as an 2 digit integer - T is the character T or space (\x20) - hh is the hour in 24 hour format, as an 2 digit integer - mm is the minute as an 2 digit integer - ss.s is the second, either as an 2 digit integer or as a floating point with 2 digits followed by a period followed by one or more digits. - Z is the character Z (indicating timezone Z, UTC+00:00) - X is either a plus (+) or minus (-) sign of the timeoffset to UTC - aa is the hour of timeoffset to UTC as a 2 digit integer - bb is the minute of timeoffset to ITC as a 2 digit integer </code></pre> <p><strong>format</strong> takes a string in the above format or a date-object and returns a string formated as:</p> <ul> <li>M D, Y @ h:mm</li> </ul> <p>Where - M is the full English name of the month - D is the date of month with a numerical order suffix (1-2 digits) - Y is the year (1 or more digits) - h is the hour in 12 hour format (1-2 digits) - m is the minute (2 digits)</p> <p><strong>month</strong> is an array with the name of the months</p> <p><strong>ordinal</strong> is a function that takes a number as input and return the number with English ordinal suffix.</p> <p><strong>clock12</strong> is a function that takes hour, minute and second in 24h format and converts it to a string in the US 12h format. The <em>seconds</em> is optional. </p> http://stackoverflow.com/questions/492994/compare-2-dates-with-javascript/497790#497790 8 Answer by some for Compare 2 dates with JavaScript some 2009-01-31T00:18:07Z 2009-01-31T00:18:07Z <p>The easiest way to compare dates in javascript is to first convert it to a Date object and then compare these date-objects.</p> <p>Below you find an object with three functions:</p> <ul> <li><p><strong>dates.compare(a,b)</strong></p> <p>Returns a number:</p> <ul> <li>-1 if a &lt; b</li> <li>0 if a = b</li> <li>1 if a &gt; b</li> <li>NaN if a or b is an illegal date</li> </ul></li> <li><p><strong>dates.inRange</strong> (d,start,end)</p> <p>Returns a boolean or NaN:</p> <ul> <li><em>true</em> if <em>d</em> is between the <em>start</em> and <em>end</em> (inclusive)</li> <li><em>false</em> if <em>d</em> is before <em>start</em> or after <em>end</em>.</li> <li>NaN if one or more of the dates are illegal.</li> </ul></li> <li><p><strong>dates.convert</strong></p> <p>Used by the other functions to convert their input to a date object. The input can be</p> <ul> <li>a <strong>date</strong>-object : The input is returned as is.</li> <li>an <strong>array</strong>: Interpreted as [year,month,day]. <strong>NOTE</strong> month is 0-11.</li> <li>a <strong>number</strong> : Interpreted as number of milliseconds since 1 Jan 1970 (a timestamp) </li> <li>a <strong>string</strong> : Several different formats is supported, like "YYYY/MM/DD", "MM/DD/YYYY", "Jan 31 2009" etc.</li> <li>an <strong>object</strong>: Interpreted as an object with year, month and date attributes. <strong>NOTE</strong> month is 0-11.</li> </ul></li> </ul> <p>.</p> <pre><code>var dates = { convert:function(d) { return ( d.constructor === Date ? d : d.constructor === Array ? new Date(d[0],d[1],d[2]) : d.constructor === Number ? new Date(d) : d.constructor === String ? new Date(d) : typeof d === "object" ? new Date(d.year,d.month,d.date) : NaN ); }, compare:function(a,b) { return ( isFinite(a=this.convert(a).valueOf()) &amp;&amp; isFinite(b=this.convert(b).valueOf()) ? (a&gt;b)-(a&lt;b) : NaN ); }, inRange:function(d,start,end) { return ( isFinite(d=this.convert(d).valueOf()) &amp;&amp; isFinite(start=this.convert(start).valueOf()) &amp;&amp; isFinite(end=this.convert(end).valueOf()) ? start &lt;= d &amp;&amp; d &lt;= end : NaN ); } } </code></pre> http://stackoverflow.com/questions/489105/efficiently-calculate-minutes-and-seconds-for-mmss-formatted-display-from-second/489744#489744 0 Answer by some for Efficiently calculate minutes and seconds for MM:ss formatted display from seconds, using OpenLaszlo / javascript? some 2009-01-28T22:39:58Z 2009-01-29T01:14:55Z <p><a href="http://stackoverflow.com/users/24257/">bobwienholt</a>s version is compact, fast and clear and it's very similar to the way I would have implemented it. For fun I did some profiling of a few different solutions and I found this to be a little faster, however it is not as clear and do an assignment semi hidden in a statement:</p> <pre><code>function secondstominutes(secs) { var m = (secs / 60) | 0; return (m &lt; 10 ? "0" + m : m) + ":" + ( ( secs %= 60 ) &lt; 10 ? "0" + secs : secs); } </code></pre> <p>Explanation:</p> <pre><code>var m = (secs / 60) | 0; </code></pre> <p>Divide secs by 60 and binary "OR" the result with 0. The binary "OR" converts the value to an integer and by or-ing with 0 the integer part of the result is returned without modification. This is faster than calling <em>Math.floor()</em> but less clear. Since it is converted to an integer you limit the length of any movie to 2147483647 minutes ≈ 35791394 hours ≈ 1491308 days ≈ 4085 years.</p> <pre><code>( secs %= 60 ) </code></pre> <p>This is the short form of doing <em>(secs = secs % 60)</em>. It divides the value of <em>secs</em> by 60 and assigns <em>secs</em> the reminder (example 61 % 60 = 1). By profiling I found that it was a little faster to put that computation inside the return statement instead of on a row of its own.</p> <pre><code>(m &lt; 10 ? "0" + m : m) </code></pre> <p>This computes the first statement <em>m &lt; 10</em> and if it is true the second statement is executed <em>"0" + m</em> else the third: <em>m</em>. In English: If <em>m</em> is less than 10 then a zero is added at the beginning else the value is returned as is.</p> http://stackoverflow.com/questions/489581/getting-the-current-gmt-world-time/490108#490108 1 Answer by some for Getting the current GMT world time some 2009-01-29T01:03:38Z 2009-01-29T01:03:38Z <p>Like <a href="http://stackoverflow.com/users/7867">Mr. Shiny and New</a> said, you need a server somewhere with correct time. It can be the server where you site are or some other server that sends the correct time in a format that you can read.</p> <p>If you want to use the date several times on your page, one or more seconds apart, you probably don't want to get the time from the server every time, but instead cache the difference and use the clients clock. If that is the case, here is one of many solutions:</p> <pre><code>var MyDate = new function() { this.offset = 0; this.calibrate = function (UTC_msec) { //Ignore if not a finite number if (!isFinite(UTC_msec)) return; // Calculate the difference between client and provided time this.offset = UTC_msec - new Date().valueOf(); //If the difference is less than 60 sec, use the clients clock as is. if (Math.abs(this.offset) &lt; 60000) this.offset = 0; } this.now = function () { var time = new Date(); time.setTime(this.offset + time.getTime()); return time; } }(); </code></pre> <p>Include it on your page and let your server side script produce a row like:</p> <pre><code>MyDate.calibrate(1233189138181); </code></pre> <p>where the number is the current time in milliseconds since 1 Jan 1970. You can also use your favorite framework for AJAX and have it call the function above. Or you can use the solution <a href="http://stackoverflow.com/users/21677/">JimmyP</a> suggested. I have rewritten JimmyPs solution to be included in my solution. Just copy and paste the following inside the function above:</p> <pre><code> this.calibrate_json = function (data) { if (typeof data === "object") { this.calibrate (new Date(data.datetime).valueOf() ); } else { var script = document.createElement("script"); script.type="text/javascript"; script.src=(data||"http://json-time.appspot.com/time.json?tz=UTC") + "&amp;callback=MyDate.calibrate_json"; document.getElementsByTagName('head')[0].appendChild(script); } } this.calibrate_json(); //request calibration with json </code></pre> <p>Notice that if you change the name of the function from <em>MyDate</em> you have to update the callback in *this.calibrate_json* on the line <em>script.src</em>.</p> <p>Explanation:</p> <p><em>Mydate.offset</em> is the current offset between the server time and the clients clock in milliseconds.</p> <p><em>Mydate.calibrate( x );</em> is a function that sets a new offset. It expects the input to be the current time in milliseconds since 1 Jan 1970. If the difference between the server and client clock is less than 60 seconds, the clients clock will be used.</p> <p><em>Mydate.now()</em> is a function that returns a date object that has the current calibrated time.</p> <p>*Mydate.calibrate_json( data )* is a function that either takes an url to a resource that gives back a datetime reply, or an object with the current time (used as a callback). If nothing is supplied, it will use a default url to get the time. The url must have a question mark "?" in it.</p> <p>Simple example of how to update an element with the current time every second:</p> <pre><code>setInterval( function () { var element = document.getElementById("time"); if (!element) return; function lz(v) { return v &lt; 10 ? "0" + v : v; } var time = MyDate.now(); element.innerHTML = time.getFullYear() + "-" + lz(time.getMonth() + 1) + "-" + lz(time.getDate()) + " " + lz(time.getHours()) + ":" + lz(time.getMinutes()) + ":" + lz(time.getSeconds()) ; },1000); </code></pre> http://stackoverflow.com/questions/1600190/php-code-to-obfuscate-html Comment by some on PHP code to obfuscate HTML? some 2009-10-21T13:13:18Z 2009-10-21T13:13:18Z Like many others has said: Don't bother. If someone wants to look at your code they can do so with the right tool. It is a lost battle. You will spend more time trying to obfuscate than someone who want to look at your code. Also, you pages will not be indexed by search enginges, your pages requires javascript. I took a peek on ioncube and saw that their code is slow (and very slow on IE). It took less than 2 minutes to make it more than twice as fast on all browsers and even faster on IE (didn't bother to profile how much) http://stackoverflow.com/questions/1600190/php-code-to-obfuscate-html/1600233#1600233 Comment by some on PHP code to obfuscate HTML? some 2009-10-21T13:01:13Z 2009-10-21T13:01:13Z @Xinus: I can only see that the width-attribute of the pre-tag has been deprecated, not the tag itself. http://stackoverflow.com/questions/1600190/php-code-to-obfuscate-html/1600233#1600233 Comment by some on PHP code to obfuscate HTML? some 2009-10-21T11:55:43Z 2009-10-21T11:55:43Z If you want to reduce the size even more, check if the browser supports on-the-fly compression and compress the data. http://stackoverflow.com/questions/1594873/need-to-take-two-text-field-values-and-add-together-to-another-field Comment by some on Need to take two text field values and add together to another field some 2009-10-20T14:34:44Z 2009-10-20T14:34:44Z Just a clarification: The php-code runs on the server at the time the page is downloaded by the browser. If the user change the first or last name, the php-code will not be run again and your hidden screen_name will always be empty. You have to concatenate the strings when you post the page to the server. And make sure you sanitize them at least by trimming them. http://stackoverflow.com/questions/1594873/need-to-take-two-text-field-values-and-add-together-to-another-field/1594903#1594903 Comment by some on Need to take two text field values and add together to another field some 2009-10-20T14:24:52Z 2009-10-20T14:24:52Z Never ever trust the user input. Always sanitize it. At least trim it (remove white space at the beginning and at the end). Even if javascript is great and useful, make sure your pages works as much as possible even when it's not available (the user may have disabled it). http://stackoverflow.com/questions/1594873/need-to-take-two-text-field-values-and-add-together-to-another-field/1594898#1594898 Comment by some on Need to take two text field values and add together to another field some 2009-10-20T14:20:16Z 2009-10-20T14:20:16Z Suggestions: Trim both the first_name and last_name since the user could have antecedently put spaces in them (and maybe put a space between the first and last name?) Maybe also make sure that the first and last name don't have characters below 31, no special chars, case-correction... http://stackoverflow.com/questions/396164/exposing-database-ids-security-risk/396180#396180 Comment by some on Exposing database IDs - security risk? some 2009-10-16T08:31:56Z 2009-10-16T08:31:56Z They are everywhere. Many shoppingsites use a sequential number for the order id. Place one order at one date, and one at another date and you know how many orders they got during that period. Even if you don't know how much money the orders are worth, you still get an indication of how the well the business goes. http://stackoverflow.com/questions/1571752/where-can-i-get-a-simple-table-of-time-zones-for-use-in-sql-server Comment by some on Where can I get a simple table of time zones for use in SQL server? some 2009-10-15T11:35:37Z 2009-10-15T11:35:37Z Depends on what you are trying to do and why it is important to know. You can use javascripts date-object on the online-form to find out what timezone the user has configured their computer to be in (not necessarily where they are at the moment) http://stackoverflow.com/questions/1543107/what-is-the-cleverest-ui-feature-you-have-seen-in-a-website/1554828#1554828 Comment by some on What is the cleverest UI feature you have seen in a website? some 2009-10-14T20:55:57Z 2009-10-14T20:55:57Z Can be useful in some applications but a real horror in others... And against all standards? How about the menues in windows? sure, you have to click to activate the menu, but then you navigate in submenues just by hovering (but you have to click to activate your selection). I thought the testsite was a little annoying: Sometimes I move the mouse because the pointer is over some text that I want to read, and suddenly I have navigated to a completely different place... annoying. http://stackoverflow.com/questions/1479363/how-tell-the-difference-between-a-debit-card-and-a-credit-card/1479408#1479408 Comment by some on How tell the difference between a Debit Card and a Credit Card some 2009-09-25T20:28:56Z 2009-09-25T20:28:56Z There are 3 tracks with information. When I checked my VISA card I saw that it had my card-number and my name. Don't remember what else there was. http://stackoverflow.com/questions/1457568/email-address-validation-again Comment by some on Email address validation, again... some 2009-09-22T02:07:02Z 2009-09-22T02:07:02Z <a href="http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/300862#300862" rel="nofollow" title="how far should one take e mail address validation">stackoverflow.com/questions/3232/&hellip;</a> http://stackoverflow.com/questions/1457733/nested-quotes-in-javascript/1457769#1457769 Comment by some on nested quotes in javascript some 2009-09-22T01:57:05Z 2009-09-22T01:57:05Z +1 word! http://stackoverflow.com/questions/1449096/how-could-we-fool-the-http-protocol/1449107#1449107 Comment by some on How could we fool the HTTP protocol? some 2009-09-19T18:36:51Z 2009-09-19T18:36:51Z IIRC &quot;connection&quot; is &quot;closed&quot; by default and not necessary to specify. http://stackoverflow.com/questions/378365/finding-dom-node-index/378471#378471 Comment by some on Finding DOM node index some 2009-08-27T19:06:01Z 2009-08-27T19:06:01Z @Justin: Added some more examples. http://stackoverflow.com/questions/378365/finding-dom-node-index/378471#378471 Comment by some on Finding DOM node index some 2009-08-27T18:05:25Z 2009-08-27T18:05:25Z @Justin: &quot;e=e.previousSibling&quot; is in the middle... The for-loop declares k=0 and e=elem. Then it execute e=e.previousSibling until e===null. For every successful loop it increments k by one. And it works in FF3.5.2. Please explain what you think is wrong.