Javascript poetry1322 (3/29/2011 2:59:46 PM) comp.lang.javascript This was indirectly inspired by the "Idiomatic for ... in" thread and I sincerely hope that Pedro Pinheiro will not take it as anything personal. Just while typing in "belletristic" I realized that Javascript s... VK
Null character and JavaScript strings1616 (3/4/2011 10:33:00 PM) comp.lang.javascript a fork of the thread "FAQ Topic - How can I create a Date object from a String?" As it has very little to do with Date and FAQ I moved it into the new thread. Thomas Lahn is totally correct that in JavaScript... VK
comp.lang.javascript FAQ - April 19960147 (4/26/2010 8:13:03 PM) comp.lang.javascript I am reposting it from my own post of 2006
http://groups.google.com/group/comp.lang.javascript/msg/7b2a3100608da41e
comp.lang.javascript FAQ - April 1996
http://jsnet.sourceforge.net/tmp/clj_1996.htm
... VK
how to create 5-dimensional array ?23108 (4/26/2010 12:17:38 AM) comp.lang.javascript While trying to port the promised Shannon's Clairvoyant code to
Javascript, I am having real troubles to figure out what that would be
in Javascript: 5-dimensional array of 72 elements
In VBA it is as simple... VK
JScript vs. JavaScript differences8113 (4/25/2010 10:17:34 PM) comp.lang.javascript I propose to collect all known differences between JScript vs.
JavaScript engines. I am using neutral word "difference" because the I
don't want to transform it into yet another discussion about the
eternal ... VK
Using XMLHttpRequest run locally for local data reading24240 (4/24/2010 4:40:24 PM) comp.lang.javascript In continuation of http://groups.google.com/group/comp.lang.javascript/msg/787389d10afcaf77
Test (unzip and run AJAX/test/index.html):
http://sites.google.com/site/schoolsring/javascript
LocalDataReadingTe... VK
FYI: Named entities handling by innerHTML024 (10/10/2009 10:28:01 AM) comp.lang.javascript In continuation of discussion of http://groups.google.ru/group/comp.lang.javascript/browse_frm/thread/f9904e15ef8618d0 To make the post HTML-viewing friendlier all named entities (NE) and numeric character ref... VK
JavaScript libraries questions2118 (6/6/2009 4:18:41 PM) comp.lang.javascript comp.lang.javascript charter: The proposed comp.lang.javascript will be open to discussion on all aspects of JavaScript, as it relates to HTML, Java, Perl, the World Wide Web in general, and other related lang... VK
Using 16-bit bytes?2723 (4/8/2011 5:45:47 PM) comp.lang.javascript I have a set of checkbox input elements. I store their collective states by setting a bit, using the following: function setBits(who,target) { var netValue = 0; for(var i=1; i<who.length; i++) { var mask = ... Joey(45)
opera 11 and changing input value4324 (4/13/2011 4:25:11 AM) comp.lang.javascript I have some js that looks like window.onload = function() { document.getElementsByTagName("input")[0].value = "me"; }; and the relevant HTML is simply There is only *one* INPUT in the page. Alas Opera 1... ap_prog(340)
XMLHttpRequest -- wrong Wikipedia article?531 (4/15/2011 6:12:12 PM) comp.lang.javascript Hello all, many of the subscribers of this newsgroup know through experience that Wikipedia is not exactly a fountain of wisdom when it comes to ECMAScript- based programming. In particular, the last paragra... PointedEars(2011)
responseText1018 (4/17/2011 8:21:51 PM) comp.lang.javascript Hi. I have a page like this: --------------------------------------------------------------------------- function xhrFunc() { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = functio... fbogdanovic(89)
Confusion about closures6218 (4/19/2011 1:17:22 AM) comp.lang.javascript I've seen many comments that the following creates a closure: var firstNameValue = (function(elementId) { var firstName = document.getElementById(elementId); return firstName.value; })("firstName")... rgqld(176)
problem assigning function to <div>.onclick416 (4/21/2011 3:54:27 PM) comp.lang.javascript Could someone please help: I am learning ajax, and I am trying to get one of my books examples to work. The example takes a map file created with an image file of squares, and a bunch of div's that have ... duckkiller53(3)
simple network game227 (4/22/2011 3:50:44 PM) comp.lang.javascript Hi. I'm trying to implement a tic tac toe over network. I have a Lisp server behind, where I start a new session for each player. How can I know that the other player played and vice versa ? Do I set a timer i... fbogdanovic(89)
execute php file in *.js1726 (4/27/2011 3:30:04 PM) comp.lang.javascript Hi There, I have a js file containing my script and would like to populate a table with file paths with the output from a php file. i tried to just do a within the js file but that doesn;t seem to work....how... ron.eggler(223)
Array.prototype and "this"325 (5/9/2011 4:26:08 PM) comp.lang.javascript I have functions that return first, last or list of array indexes where the array value is x. An example: function arrayFirstIndexOf(x, a) { // find first x in array a for (var i=0, l=a.length; i I thoug... denis.m.f.mcmahon7033(126)