Description:
Netscape Communications Corp.'s JavaScript language.
|
|
|
FAQ Topic - What books cover EcmaScript? (2008-10-08)
|
| |
------------------------------ ------------------------------ ----------- FAQ Topic - What books cover EcmaScript? ------------------------------ ------------------------------ ----------- Most CLJ regulars believe the best book to be: JavaScript: The Definitive Guide, 5th Edition By David Flanagan ISBN:0-596-10199-6... more »
|
|
select onchange with typing in Webkit
|
| |
In Firefox, IE and Opera, with a select menu with size > 1, typing a few characters in the menu selects an item and triggers the onchange event. In the Webkit-based Safari and Google Chrome, the item appears to be selected (visually and selectedIndex is set) but the onchange is not triggered. The W3C says "The onchange event occurs when a control loses the input... more »
|
|
IE 7 Zoom Problem
|
| |
Hi, IE7 has a zoom feature.(In IE7, If you look at lower Right Corner, there is a button that let you set the zoom level of ur webpage. the default is 100%.) The problem is I am drawing vml shapes on my webpage, at 100% everything is fine, click events works fine, mouseover also works fine, but when I zoom it to less than 90%. Everything messess up.... more »
|
|
IE6 Form and Its Properties After Submit
|
| |
Hello, My HTML form submits some values to a hidden iframe. However, this is done for file upload fields only. After file uploading is finished I am using this form to submit all other data (inputs, textareas, etc.) normally. The file upload mechanism is structured in the way that it sets form's enctype (multipart) and target to iframe dynamically and then resets... more »
|
|
Modifying a variable in a forEach loop
|
| |
Hi I would have expected the following to change the value of a, but just discovered it doesn't. var forEach = function () { var a = "a"; [a].forEach(function (v, i) { console.log("v=" + v); v = i; console.log("v=" + v); }); console.log("a=" + a); ...The output is: v=a v=0 a=a I'm not really sure why, I'd be very grateful if someone could... more »
|
|
Finding out how many checkboxes are in a table
|
| |
I'm looking to manipulate/check the state of various checkboxes and radios in a form. Because I don't want to access all of the checkboxes in the form, only a specific section, I am trying to narrow down the list of elements to check. I thought I could place those elements within a named DIV or a table, and then reference that DIV or... more »
|
|
Resetting GET query values
|
| |
Hi all, I have a POST form that also includes some anchors/links. If a user clicks a link, that link remains set so that pressing the submit button later not only sends the appropriate POST value, but also passes the previous link value. What I would dearly love to do is remove the query string after dealing with... more »
|
|
Giving a window an onblur event
|
| |
Hi, this is not as easy as it sounds. Sorry it's long winded, here is some background I've written an application which is something like a media viewer. You can upload Documents, Images, Videos, Sounds and anything else you like. The files are stored in a database as text, not as files on the hard drive.... more »
|
|
|