Search Results

1
vote

Which text editor has the most useful autocomplete for web page editing?

I tried many editors and I prefer MS Visual Studio 2005. On my machine it runs much faster than Eclipse and supports autocomplete for both html, css and javascript. There are free versions (e.g. Vi …
0
votes

Are there any JavaScript live syntax highlighters?

You can also try http://softwaremaniacs.org/soft/highlight/en/ - it's fast, it supports not only javascript but many other …
0
votes

Best way to initiate a download?

Just to summarise, you have 2 goals: start download process show user a page with a donate options To achieve this I would do the following: When your …
0
votes

innerHTML manipulation in JavaScript

I would try doing container.innerHTML = ''; container.innerHTML = content; …
0
votes

valid javascript endless loop

Thevs, browsers will prompt you if any operation is taking too long. Your loop is not an exclusion. The only way is to use setInterval/setTimeout (as it has been already noted). …
0
votes

Hidden Features of JavaScript?

As Marius already pointed, you can have public static variables in functions. I usually use them to create functions that are executed only once, or to cache some complex calculation resul …
0
votes

JavaScript to scroll long page to DIV

Correct me if I'm wrong but I'm reading the question again and again and still think that Angus McCoteup was asking how to set an element to be position: fixed. Angus McCoteup, check out …