1
vote
Javascript spinning wait hourglass-type thing
I assume you meant something to indicate background activity during an Ajax call.
I tend to have a CSS class which sets the background image to a little animated GIF, with appropriate paddi …
3
votes
How do you read this JavaScript regular expression?
A pattern of at least one 0, anchored to both the beginning (^) and end ($) of a line; in other words, the string consists of one or more zeroes. …
0
votes
Javascript clarity of purpose
Don't forget that when you write (or come across) a particularly esoteric bit of code, you should probably consider explaining what it's doing (and why it's doing it) with a quick comment, which wi …
18
votes
Call function with “this”
The following ought to do it:
function handleOnClick() {
if( confirm( "Sure?" ) ) {
return handleOnClickConfirmed.call( this );
}
return false;
}
…
1
vote
Where do I begin learning all the different JavaScript technologies/libraries?
I'd like to add a shout-out to the Yahoo User Interface libraries, which provide many of the basic "standardisation" layers that librari …
5
votes
What is the Fastest way of looping over an array on javascript?
What's wrong with a good old-fashioned for loop?
for( var i = 0; i < list.length; i++ ) {
// do something with list[i]
}
The semantics of …
7
votes
How do I create a “check all” link for a web form?
You're going to want to check the element's type to ensure you don't accidentally go checking the wrong kind of inputs.
Basic example:
function checkAll( toggle ) {
var …
0
votes
Problem JavaScript retrive information
Extract the URL from the attribute using whichever DOM manipulation technique you prefer (perhaps a library)
Use a regular expression to extract the desired portion of the URL
…
1
vote
Will HTML be replaced by any new technology?
The problem here is that HTML is very very good for describing documents, which is what it was designed for, and not particularly good for helping lay out complicated interfaces/web applications, w …
1
vote
How can I teach a beginner to write ASP.NET web applications quickly?
I respectfully refer you to my answer to "I'm New to C# and I don't have any p …
0
votes
In an onclick handler, how can I detect whether shift was pressed?
The event fired from the DOM ought to contain a shiftKey (or equivalent) property indicating the state of the shift key when the event was fired; see, e.g. …
0
votes
How does Javascript CANVAS works?
Surely that's implementation-specific to the JavaScript engine browser in question?
…
4
votes
Making Live Clock javascript
It's doable on the client with a little bit of JavaScript. Without using a framework such as jQuery, which would be of marginal help here, the basic method would be something similar to the followi …
0
votes
dynamic script loading synchronization
Are you sure that adding a <script> element to the DOM will cause the browser to actually evaluate the script at all? I have a vague memory of reading somewhere that it doesn't, …
1
vote
Debug JavaScript within IE6
Jonathan Boutelle has a good cheat sheet on getting the Microsoft Script Editor to work for …
