Description:
Netscape Communications Corp.'s JavaScript language.
|
|
|
FAQ Topic - How do I detect Opera/Netscape/IE? (2008-09-07)
|
| |
------------------------------ ------------------------------ ----------- FAQ Topic - How do I detect Opera/Netscape/IE? ------------------------------ ------------------------------ ----------- The ` navigator ` object contains strings which specify the browser and version; however, this is in general not... more »
|
|
Javascript Performance Leaks and IE?
|
| |
I'm trying to make an AJAX site that makes heavy use of objects (maybe my first mistake =( ...). I've come across a bizarre bug when using IE 6. At first I thought it was some sort of memory leak... but I diagnosed with drip [and it came up clean]. Also, it doesn't seem to be related to IE caching (since even with my IE6 caching turned off).... more »
|
|
Syntax help please
|
| |
I'm trying to put: document.form1.proto0[0].check ed=true; document.form1.proto1[0].check ed = true; document.form1.proto2[0].check ed = true; . . document.form1.proton[0].check ed =true; into a loop. I've unsuccessfully tried: for (var i=0;i<n+1;i++) { document.form1.proto+i+[0].che cked=true; ...and I've been unsuccessful using:... more »
|
|
Still have a question about a common JavaScript routine
|
| |
I still have a question regarding the following code, in a commonly used routine. First, Here's the code in question: Function.prototype.bind = function(){ var fn = this, args = Array.prototype.slice.call(arg uments), object = args.shift(); return function(){ return fn.apply(object, args.concat(Array.prototype.sl ice.call(arguments)));... more »
|
|
How could I redirect document.write to a new page/tab?
|
| |
Hi, I am trying make some multimedia files playable from my website. So far, I am able to generate dynamically a new page containing the right <embed> section. However, when I load my script, it overwrites the current page. Is there any way I could load a new tab or window, and put the new content into it?... more »
|
|
srcElement and innerText and?
|
| |
To show users how many characters they have left in a TEXTAREA input I have been using "taCount" from a website I googled. function taCount(visCnt) { var taObj=event.srcElement; if (taObj.value.length>taObj.maxL ength*1) taObj.value=taObj.value.substr ing(0,taObj.maxLength*1); if (visCnt) visCnt.innerText=taObj.value.l ength;... more »
|
|
Javscript Editors with variable watch and debug?
|
| |
Would everyone begin to post JavaScript editors that include watch and debug windows! These tools are probably very new... but posting responses to this post will aid in gathering a number of tools that make JavaScript easier to develop and debug... The amazing amount of javascript included in web software packages... more »
|
|
Google's V8 Javascript Engine Source
|
| |
I packaged just the source to the V8 JS engine up along with Makefiles and build scripts for those that would like to try it out. [link] This is pulled from the SVN sources and should just build if you have a recent g++. Check the samples directory for the interactive shell... more »
|
|
FAQ Topic - My element is named myselect[] , how do I access it? (2008-09-06)
|
| |
------------------------------ ------------------------------ ----------- FAQ Topic - My element is named myselect[] , how do I access it? ------------------------------ ------------------------------ ----------- Form controls with any "illegal" characters can be accessed with ` formref.elements["myselect[]"] ` - The bracket characters,... more »
|
|
|