| Thread | Last Post | Replies |
|
| Javascript fails in Firefox (OK in IE) | 01 Sep 2008 00:52 GMT | 4 |
The following cgi generated html page has the following Javascript in the Body section:- <script language="JavaScript" type="text/javascript"> <!-- Begin
|
| How are arguments a legit argument to Array.slice? | 31 Aug 2008 23:08 GMT | 16 |
In the code sample below, how are arguments a legitimate argument to Array.slice? Function.prototype.bind = function(){ var fn = this, args = Array.prototype.slice.call(arguments), object =
|
| Prioritize form field | 31 Aug 2008 22:38 GMT | 2 |
How can the function below be rewritten to prioritize form fields instead of other objects with the same name? For example I want getele("title") to retrieve the form field named "title" instead of document.title - how do I get it to do that?
|
| Issue in FF: document.write a DIV (block level element) inside a LABEL tag | 31 Aug 2008 22:15 GMT | 5 |
I am having problems figuring out how to make Firefox behave, and output the HTML I want it to output. The thing I want done is actually quite simple. I have a <label> tag, and inside it, I have a script tag, that document.write's some HTML.
|
| Ajax: Problems with Javascript debugging | 31 Aug 2008 16:41 GMT | 3 |
I am teaching myself AJAX, and have now gotten to the point where syntax errors are removed. I am using Javascript and HTML for now, to get a dropdown menu. The failed script follows an example in Steven Holzner's Ajax Bible pp
|
| IE7 and document.documentElement.clientHeight | 31 Aug 2008 09:52 GMT | 1 |
The code below returns the viewport of the browser window but it does not work in IE7 because of the document.documentElement.clientHeight: function pageHeight(){ return window.innerHeight != null ? window.innerHeight :
|
| addEvent - The late entry :) | 31 Aug 2008 04:33 GMT | 64 |
I jokingly say this is the late entry :) Okay I have read all the event entry comments from John's Resig's AddEvent comepition blog :- http://ejohn.org/projects/flexible-javascript-events/
|
| Javascript Name action problem | 31 Aug 2008 04:07 GMT | 9 |
Below is my code snippet having only one form, <form> <input type ="radio" name="action" value="xyz" checked>xyz <input type ="radio" name="action" value="zyx">zyx
|
| larger radio/checkbox or mapping? | 30 Aug 2008 20:15 GMT | 16 |
I need bigger, easier to hit, checkboxes and radios. If that is not possible, and it appears not, is there a way to map the inside of a table cell to 'select'. Ideas? I suppose I could use images and implement the behavior with js. I'm fishing here. Thank you for any
|
| FAQ Topic - How do I get a perl/asp/php variable into client-side js? (2008-08-30) | 30 Aug 2008 20:12 GMT | 1 |
----------------------------------------------------------------------- FAQ Topic - How do I get a perl/asp/php variable into client-side js? -----------------------------------------------------------------------
|
| Identifying call of copy of ((){ })(); | 30 Aug 2008 18:03 GMT | 6 |
I have this (the name is fixed by the LMS): var API_1484_11 = (function() { // private variables // private methods
|
| Deleting an anonymous function | 30 Aug 2008 15:28 GMT | 9 |
What is the best practice for removing anonymous functions? Something like (function() { doSomething(); arguments.callee = null; })(); seems to work (at least it triggers no errors or exceptions on FF, but
|
| Checking focus on an element in interaction with uppercase function | 29 Aug 2008 17:58 GMT | 1 |
I'm trying to solve a little problem with an uppercase function. It looks like this: function uppercase() {
|
| onmouseup isn't always triggered when mouse button is released | 28 Aug 2008 21:48 GMT | 11 |
http://www.frostjedi.com/terra/scripts/demo/onmouseup.html In Firefox, if I click in the black box and then release, I get a popup. If I click, drag the cursor, and then release, I don't. Similarly, if I click and then release outside of the black box, I
|
| FAQ Topic - How do I trim whitespace - trim/trimRight/trimLeft (2008-08-28) | 28 Aug 2008 21:35 GMT | 1 |
----------------------------------------------------------------------- FAQ Topic - How do I trim whitespace - trim/trimRight/trimLeft -----------------------------------------------------------------------
|