| Thread | Last Post | Replies |
|
| GromJS server-side JavaScript interpreter | 09 Jul 2008 09:50 GMT | 1 |
GromJS server-side JavaScript interpreter ------------------------------------------------------------------------ GromJS is server-side JavaScript implementation of Mozilla SpiderMonkey interpreter for unix-like operating systems.
|
| module pattern provides no privacy in Firefox | 08 Jul 2008 19:55 GMT | 1 |
The module pattern has been discussed many times and has shown how ECMAScript has the ability to encapsulate data as "private" variables by using closures. Today, in a comment on my blog, a reader, haysmark, points out that
|
| Disadvantage of including JavaScript files within a JavaScript file? | 08 Jul 2008 16:18 GMT | 2 |
What's the possible disadvantage of including JavaScript files within a JavaScript file? Why I needed it? For the sake of easy management, perhaps? Any load speed disadvantage? Example below: document.write('<script type="text/javascript" src="'+libraryName+'"><
|
| Drag a file from Desktop and Drop into Browser File Element | 08 Jul 2008 13:51 GMT | 3 |
Hi ... Is it possible to drag a file from Client Desktop into the Browser Form File Element(input type='file') instead of File Browse? I know that, File drag is possible in the Mozilla Firefox
|
| permission denied to access window object | 08 Jul 2008 13:22 GMT | 2 |
I know if the frames/windows can't access properties inside another frame/window that comes from a different domain. But could this call violate the security window.parent
|
| acrobat doesn't close | 08 Jul 2008 03:01 GMT | 6 |
I'm testing the embedding of a PDF in a page <embed src="test.pdf" style="position:absolute; left:10px; top:10px; width:290px;
|
| 'sack' + javascript problems on Mozilla | 07 Jul 2008 21:22 GMT | 3 |
Hi all; I am using 'sack' to update a div on my page with some HTML code that also include a javascript alert. I can get the content of the div to change with my HTML code, but my
|
| Functional question | 07 Jul 2008 18:17 GMT | 13 |
Do these two give a different result? function positive() { return true; } var positive = function() { return true; }
|
| Question on Object oriented Programming in JS | 07 Jul 2008 16:25 GMT | 5 |
When I looked at ExtJS source code, I found something strange. could anyone here explain to me? In ext-base.js file they wrap the all code inside:
|
| Regular expression help for 12 hour clock? | 07 Jul 2008 11:54 GMT | 8 |
I am trying to make a regex for a 12 hour clock, and I can't seem to get it just right. What I have now is var regexmatch = /(1[012]:[0-5][0-9]|[1-9]:[0-5][0-9])\s((a\.m\.)|(p
|
| Javascript and Firefox 3.0 | 07 Jul 2008 09:22 GMT | 1 |
Thanks in advance for any comment and suggestion... On one of my web pages, I use javascript to pop up a context menu box when the right-mouse button is clicked on a link. It works fine in Firefox 2.
|
| How to put a single quote in a JS var defined by single quotes | 07 Jul 2008 04:00 GMT | 2 |
var a = 'what goes in here to get a single quote?';
|
| How to add a caret like FCKEditor? | 07 Jul 2008 03:25 GMT | 3 |
We can add a caret in textarea, but when I inspect FCkEditor with firebug, I don't find a textarea tag, but still there is a caret there. I wonder how Fckeditor do that? Anyone know that?
|
| Javascript Slideshow + MS Acess | 06 Jul 2008 17:06 GMT | 5 |
I have a very simple javascript slideshow. It is extremely basic (see small sample below): <script language="JavaScript1.1"> <!--
|
| tbody.removeChild(tbody.lastChild) sometimes fails | 06 Jul 2008 11:38 GMT | 5 |
I am lerning HTML/CSS/JavaScript. I created HTML page with table "property_fields" containing 24 rows ('tr' elements). I want to remove last 23 rows: var table = document.getElementById("property_fields");
|