blog

The jQuery Camp 2008 is over

The jQuery Camp 2008, which has been held today at the Stata Center at the MIT, is over. It has been organized by the creator of the library, John Resig - who did a great job - with the library and with the conference!

While John opened the day with news about the current jQuery status, planned changes, internals and not-so-well-known features of the core he also mentioned:
"I haven't done any serious Web development in a long time..."
Which obviously nobody in the crowd believed.

Afterwards other speakers talked about scalable applications, jQuery UI and jQuery Plugin development. At least in the advanced track the quality of the talks was pretty high, except for one exception, where downloading and installing the framework would have had the same effect... completely wrong for an advanced audience to just explain the basic samples delivered with the framework. Punished by typing noise (80% MacBooks, 20% others).

One of the highlights was the talk about processing.js, a port of the Processing visualization language, which clearly showed what is possible with todays JavaScript and current browsers (including IE!).

Overall a great day together with the jQuery community and the jQuery developers at the MIT! Looking forward to next years conference!

(Photo source)

Labels: , , , ,


Posted by Michael Baierl on Monday, September 29, 2008, 0 comments
Link: http://mbaierl.com/blog/2008/09/jquery-camp-2008-is-over.html

jQuery is going to be used by Microsoft and Nokia

John Resig announced today that the jQuery library is going to be integrated into new mobile phones by Nokia and into Visual Studio by Microsoft.
Microsoft and Nokia aren’t looking to make any modifications to jQuery (both in the form of code or licensing) - they simply wish to promote its use as-is. They’ve recognized its position as the most popular JavaScript library and wish to see its growth and popularity continue to flourish.
This is great news for the future of the jQuery library! Congratulations!

Read the full announcement.

Labels: , , ,


Posted by Michael Baierl on Sunday, September 28, 2008, 0 comments
Link: http://mbaierl.com/blog/2008/09/jquery-is-going-to-be-used-by-microsoft.html

jQuery Conference 2008

The jQuery Conference is going to take place on September 28, 2008, in Boston. Finally the Conference Agenda was posted - containing a beginner and an advanced track, great speakers and interesting topics. To be able to choose tracks at the event just import this iCal agenda file and synchronize it to your mobile device. I'll update the file as updates are released.

Labels: , , ,


Posted by Michael Baierl on Sunday, September 07, 2008, 0 comments
Link: http://mbaierl.com/blog/2008/09/jquery-conference-2008.html

The Ajax Experience 2008 / jQuery Camp

End of September is going to be great - first of all there will be the Ajax Experience 2008 in Boston; on the day before the jQuery Camp is held, hopefully at the same place.
Both events feature a lot of interesting speakers, a lot of sessions and information useful for everyone working with Web technologies in the Web 2.0 world. Not easy to decide which of the up to four tracks to visit... cloning would be a great technology and very useful these days... So Tracie provided an iCal file of the conference agenda which can easily be imported into iCal or any other application which can read ics files. Not that it helps deciding which session to visit, but at least I know what's going on and up to decide!

Enjoy!

Labels: , , ,


Posted by Michael Baierl on Sunday, August 17, 2008, 0 comments
Link: http://mbaierl.com/blog/2008/08/ajax-experience-2008-jquery-camp.html

jQuery on the Server

Last night I had an idea about a project I'm working on and how to make this extensible and flexible by using JavaScript code snippets which are to be added to the Java code. Sounds like a crazy idea but I remembered Mozilla Rhino which allows executing JavaScript from within Java. Issue 1 solved.

Also I'm a great fan of the jQuery library and would most probably like to use it on the server side to perform modifications - saves a lot of time in working with the DOM. Luckily I also remembered a post of John Resig which explains exactly that issue (ok, Google helped me to find it :) ) - executing jQuery inside of Rhino. Using an application server like Jaxer is no option as the server environment is given. Issue 2 solved.

So, downloading Rhino, downloading env.js, downloading jquery.js, putting the sample together and, guess what, nothing worked. Uff. Even simple selectors like jQuery('div').length always returned 0. After a little investigation I figured out that up to jQuery version 1.2.1 it worked like a charm, but the newer versions did not work anymore. But why? Hard to figure if there are not error messages shown.

What to do? Firing of a note to John Resig and - surprise - he wrote back within a few minutes, pointing me to a new version of env.js which also works with newer versions of jQuery.

THANKS John!


So grab the new version of env.js and start using jQuery 1.2.6 on the server right now!

Labels: , , , ,


Posted by Michael Baierl on Friday, July 25, 2008, 0 comments
Link: http://mbaierl.com/blog/2008/07/jquery-on-server.html