Search Results

0
votes

Why am I getting this Javascript runtime error?

In addition to the onload fixes proposed here, also check to see if there are multiple elements with that ID, I believe IE will return a collection of all elements with that ID, in which case you w …
1
vote

JavaScript style/optimization: String.indexOf() v. Regex.test()

I doubt it is a question of performance or optimization. I would suspect the author of that code was simply not comfortable or familiar with regular expressions. Also notice how the comma-separated …
1
vote

Internet Explorer Debug Mode - Is there a quick way to enable/disable it?

I recommend using Firefox + IE Tab, which would allow you to easily and quickly change the rendering engine used for …
3
votes

Stunning graphic effects with javascript

This is a "mouse follow" javascript animation from 2002 or earlier, the smoothness and accuracy makes for a pleasing effect. I could only find a version that ran in IE, but it is worth firing up IE …
3
votes

Identifying list item index - which is a better approach?

You can avoid adding event handlers to each list item by adding a single event handler to the containing element (the unordered list) and leveraging the concept of event bubbling. In this single ev …
2
votes

Google Chrome - javascript version

Google Chrome uses the V8 javascript engine, which currently states that it implements ECMA-262, 3rd edition. This would imply it supports …
5
votes

Best javascript syntactic sugar

Repeating a string such as "-" a specific number of times by leveraging the join method on an empty array: var s = new Array(iRepeat+1).join("-"); Results in "---" …
2
votes

Counting Results in an Array

One technique would be to iterate over the choices and increment a counter associated to each unique choice in an object property. Example: var choiceCounts = {}; for (var i …
1
vote

how to display xml in javascript?

One technique would be to use two iframe elements with the src attribute set to the corresponding xml file available from the server (assuming it is exposed through a virtual directory): …