Search Results

10
votes

Why would a javascript variable start with a dollar sign?

AFAICS it's not recommended to use because the ECMAScript specification states that: …
2
votes

Javascript - array.contains(obj)

indexOf maybe, but it's a "JavaScript extension to the ECMA-262 …
1
vote

Identifying list item index - which is a better approach?

Maybe something similar to: var lis = document.getElementById("list").getElementsByTagName("li"); for (var i = 0, li; li = lis[i]; ++i) { li.addEventListener("click", (function(p …
1
vote

How to determine which html page element has focus?

Maybe document.activeElement, don't know about browser support tho. Seems to work in Firefox and …
1
vote

How do you determine media type in Javascript?

[..], Prototype won't allow an element to be switched to visible if it was declared invisible (display: none) with non-inline CSS. This is something that I haven't under …
1
vote

How to get all options of a select using Jquery?

Some answers uses each, map is a better alternative here imho: $("select#example").children().map(function() {return $(this).val();}).get(); …
0
votes

Dynamic add row javascript function works in Firefox but not in IE

e1.setAttribute("onclick","javascript:SelectSubCat(this);"); I think this line may be the cause. Look at the following (the first row uses "onchange", but the …
1
vote

How to turn a very long column into multiple shorter ones?

Ignoring: Also be sure to keep related items in the same column (ie. if dt 7 is col x, so should dd 7). one possible solution could be …
1
vote

Javascript Object Literal and Array Problem

Egil Hansen's answer is probably better, but you could …
0
votes

What is the “best practice” for resizing text with Javascript?

What is the "best practice" (accessibility/usability-wise) for resizing text with Javascript? "Web Accessibility Gone Wild" …