User jeds - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T21:33:15Zhttp://stackoverflow.com/feeds/user/4547http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220116#2201164Answer by jeds for Is there a faster alternative to Google Analytics?jeds2008-10-20T22:08:11Z2008-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#470341Answer by jeds for Can I stop .NET eating IDs?jeds2008-09-05T22:55:25Z2008-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#444481Answer by jeds for catching button clicks in javascript without server interactionjeds2008-09-04T18:45:29Z2008-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#443650Answer by jeds for What are the best keyboard macros for programming in windows?jeds2008-09-04T18:11:39Z2008-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>