1,723 articles and 13,152 comments as of Sunday, October 10th, 2010

Thanks to the test at Slick Speed Test, we have some empirical evidence about jQuery versus other JavaScript frameworks.
I’m a freak for performance. I like squeezing milliseconds out of a script and I really like reading tips on how to improve my code. This test can help highlight some areas to [...]

Sometimes I want scripts to work as soon as possible, possibly even before document.ready.
For style changes, one option is to add CSS link or style tags to the page. However, if the CSS is tightly married to a JavaScript solution, it’s better to keep the styling changes based in JavaScript.
So here’s my approach: I wrote [...]

I want to share my ideas about adding jQuery to your site with the Content Editor Web Part (CEWP). My goals for any project include: respect the user, respect the server, and respect myself.
Respect the User
I started including this segment in all of my new projects:

<script type="text/javascript">
if(typeof jQuery==’undefined’){
var jQPath = ‘http://ajax.googleapis.com/ajax/libs/jquery/1.3/’;
document.write(’<script src="’,jQPath,’jquery.min.js" [...]