0
votes
How can I get Gmail-like file uploads for my web app?
Gmail's code is difficult to find your way around, but if I had to guess, this is how it works:
When you click "attach another file", it inserts a regular input type file control. On …
6
votes
When should I use Inline vs. External Javascript?
Externalizing javascript is one of the yahoo performance rules:
http://developer.yahoo.com/performance/rules.htm …
1
vote
What framework would you recommend for making desktop-like apps for the web?
Apple is demonstrating that sproutcore does work, although it's hard to estimate how well it works. Currently I build web apps with a home-grown set of libraries, duplicating a set of functionality …
0
votes
Any ideas on how to make edit-in-place degradable?
If it's textual content, you could show the editable content as an input type submit button, with as caption the content. When clicked, it would submit the entire form, preserving the other values, …
4
votes
Make Browser Window Blink in Task Bar
Supposedly you can do this on windows with the growl for windows javascript API:
http://aj …
3
votes
Cross Browser Flash Detection in Javascript
Perhaps adobe's flash player detection kit could be helpful here?
http://www.adobe.com/products/fl …
1
vote
What JavaScript frameworks conflict with each other?
AFAIK, all the popular frameworks are designed to be combined with other frameworks. I don't think combining them is that much of a problem. I would however discourage combining them purely from a …
3
votes
How do you optimise your Javascript ?
This page contains some suggestions:
http://www.newearthonline.co.uk/index.php? …
2
votes
help: javascript if statement returns wrong values
Silly question: are you sure the returned string doesn't contain spaces?
…
7
votes
How do I uniquely identify computers visiting my web site?
A possibility is using flash cookies:
Ubiquitous availability (95 percent of visitors …
0
votes
Resizing an iframe based on content
iGoogle gadgets have to actively implement resizing, so my guess is in a cross-domain model you can't do this without the remote content taking part in some way. If your content can send a message …
1
vote
Which JavaScript graphics library has the best performance?
If you're not doing 3d, just use raw canvas with excanvas as an explorer fall-back. Your bottleneck will be javascript execution speed, not line rendering speed. Except for IE, which will bog down …
0
votes
tracking pixel or javascript include?
If you include an external script in the <head> section, it is downloaded and executed before the page is shown, so you are sure that if a user saw the page they got tracked. For <img> …
2
votes
Javascript not loading in hosted web browser
You might want to implement your own security manager:
http://msdn.microsoft.com/en-us/library/ms537182 …
4
votes
Is client-side UI rendering via Javascript a good idea?
I'm on the tail end of building just this sort of app. It's an ExtJS GUI on top of Zend Framework JSON-RPC web services, implementing an iGoogle-like gadget portal.
Advantages:
…
