First  |  Prev |  Next  |  Last
Pages: 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
FAQ Topic - What is the Document Object Model (DOM)? (2010-07-18)
----------------------------------------------------------------------- FAQ Topic - What is the Document Object Model (DOM)? ----------------------------------------------------------------------- TheDocument Object Model(DOM) is a interface-based model for `Document`objects. The DOM allows scripts to dynamically ... 18 Jul 2010 06:15
[ANN] Call for Participation for 2010 Workshop on Scheme and Functional Programming
CALL FOR PARTICIPATION 2010 Workshop on Scheme and Functional Programming Montreal, Quebec, Canada Saturday and Sunday August 21-22, 2010 http://www.iro.umontreal.ca/~sfp2010 *** ONLINE REGISTRATION IS NOW OPEN FOR TH... 17 Jul 2010 15:12
Disabling backspace (back a page) in ajax application
I've been getting complaints from users who hit backspace outside of a textbox by accident, and get taken "back" a page by their browser. In our AJAX application this is really annoying, as it takes them back to the "login" page, and they have lost everything they were doing. Is there a simple way to disabl... 17 Jul 2010 19:33
How to find if statusbar is hidden or visible in firefox?
Hi, I have some issue in identifying if the status bar is visible or hidden in a window. window.statusbar will return the statusbar object of the window. And window.statusbar.visible will return true, if the status bar is visible. The issue here is , even if the status bar is hidden in my current window, the ... 19 Jul 2010 20:09
Sencha Touch--Support 2 browsers in just 228K!
Sencha Touch is a bizarre mish-mash of ExtJS and a jQuery plug-in called JQTouch. It is advertised as the first "HTML5 framework" based on "standards" like HTML5 and CSS3. Of course, HTML5 is neither a standard nor widely implemented and the script eschews CSS3 for proprietary WebKit extensions. And the most biz... 22 Jul 2010 02:42
FAQ Topic - What is JScript? (2010-07-16)
----------------------------------------------------------------------- FAQ Topic - What is JScript? ----------------------------------------------------------------------- JScript is Microsoft's implementation of ECMAScript. Questions that are specific to Microsoft's JScript may also be appropriately asked at... 16 Jul 2010 04:28
Object oriented javascript question
Hi, I'm trying to figure out how to modify the property of an object from within an object descended from that parent object. Here's the code: //new object function A() { this.first = "one"; this.second = "two"; this.third = "three"; } //add the 'typing' object to our object A.prototype.myType = { fi... 18 Jul 2010 09:27
Setter/Getter in module pattern?
Hi JavaScript gurus, just a newbie to JavaScript and came across the module pattern. I'm not really sure about how to go about implementing getter/setter in the module pattern. BTW, I'm not even sure if implementing the getter setter within the module pattern is a good idea. Here is a short example var g = functio... 15 Jul 2010 14:16
Bug in Safari 5
Hello, I've just had the following issue in Safari 5: 0 == (0.17 * 2) >> 0 // -> true 0 == (0.17 * [0,1].length) >> 0 // -> false (!) and here is a possible workaround: a = (0.17 * [0,1].length) >> 0 0 == a // -> true (results are the same with ===) ... 20 Jul 2010 04:50
Ajax script stopped working.
I couldn't find an Ajax group to ask this in -- this is the closest related group I could find. If someone could point me to one, I'd appreciate it. (If there's anyone except spammers using this group. Sheesh!) I've a Web page I put together which uses javascript and Google API Ajax to return to the page a displ... 15 Jul 2010 15:23
First  |  Prev |  Next  |  Last
Pages: 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28