User jeds - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T21:33:15Z http://stackoverflow.com/feeds/user/4547 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220116#220116 4 Answer by jeds for Is there a faster alternative to Google Analytics? jeds 2008-10-20T22:08:11Z 2008-10-20T22:08:11Z <p>a good alternative is <a href="http://reinvigorate.net/" rel="nofollow">reinvigorate</a>. It gives you stats in "real time" and (in my opinion) is a little faster, but it doesn't have as many options as g-analytics.</p> http://stackoverflow.com/questions/38998/can-i-stop-net-eating-ids/47034#47034 1 Answer by jeds for Can I stop .NET eating IDs? jeds 2008-09-05T22:55:25Z 2008-09-05T22:55:25Z <p>What I usually do is create a general function that receives the name of the field. It adds the usual "asp.net" prefix and returns the object.</p> <pre><code>var elemPrefix = 'ctl00-ContentPlaceHolder-'; //replace the dashes for underscores var o = function(name) { return document.getElementById(elemPrefix + name) } </code></pre> <p>With that you can use this kind of calls in jQuery</p> <pre><code>$(o('buttonId')).bind('click', function() { alert('hi); }); </code></pre> http://stackoverflow.com/questions/44401/catching-button-clicks-in-javascript-without-server-interaction/44448#44448 1 Answer by jeds for catching button clicks in javascript without server interaction jeds 2008-09-04T18:45:29Z 2008-09-04T18:45:29Z <p>It sounds that you're doing a request to the server on each click, the password box being reset in each page load is typical behavior of the browsers.</p> http://stackoverflow.com/questions/44350/what-are-the-best-keyboard-macros-for-programming-in-windows/44365#44365 0 Answer by jeds for What are the best keyboard macros for programming in windows? jeds 2008-09-04T18:11:39Z 2008-09-04T18:11:39Z <p>I use a lot the "intellisense" snippets in Visual Studio. You can include your own snippets and press double tab when they appear in the list. That's definitely a time saver. </p>