Acko.net
23 Mar 2007

jQuery OSCMS presentation slides

Update: a raw video is now available of (almost) the entire session. Thanks to Jon F Hancock for recording it.

Today I did my second session at OSCMS, which was basically a repeat of the jQuery talk I did at DrupalCon Brussels.

You can download a PDF (2.2MB) of the (slightly tweaked) presentation slides.

Tags:
24 Mar 06:41

Very nice...

Very nice... did people seem to grok it fairly well? How long did you have to present all of this information? Great job, as usual :-)

24 Mar 08:34

GREAT presentations

by Pat

Hey Steven, Great presentations at OSCMS 07. While I had experimented with jQuery before, it was nice to have someone fill in the knowledge gaps and explain it in a very clear manner. Plus, now I finally "get" the full power of Firebug. ;)

Also really enjoyed your design presentation. Much thanks!

-pat

24 Mar 09:58

John: Presentation time

by Steven

The presentation took about an hour, with some simple live demos (maybe 10-15 minutes with FireBug) and questions at the end included. Generally people seemed to grok it well.

The only thing I noticed is that, after getting used to jQuery, everything about it is so ridiculously obvious that it's difficult not to gloss over some of the basics when you're trying to explain it to newcomers :).

26 Mar 11:22

Posting the Code Snippets?

Hey Steven,
Great presentation and overview. It helped clear up a few things and was great to see how you used FireBug as well.

You were going through a number of jQuery code snippets during your live demo. Would you be willing to post them here -- or at least copy and paste them into pastebin?

Thanks,
-Kent.

26 Mar 11:59

FireBug Question

by dave

During your live demo, you had a separate pane on the right side of FireBug where you could enter multi line jQuery. I can enter jQuery from the console tab of FireBug, but something just seems different from what you were doing. What am I missing? Were you using Inspect > Script > Watch?

Outstanding presentation by the way.

26 Mar 15:50

Firebug Console & Snippets

by Steven

There is a little arrow button on the right side of the console to switch from a single-line layout to a multi-line layout.

Here are some of the snippets I prepared before hand (though some of the later stuff was just made up on the spot):

$('img').slideUp('medium');
$('img').fadeIn('slow');
$('p:nth(0)').css('color', 'red');
$('p')[1].style.color = green;
$('#sign-up a').click(function () {
  $(this).hide();
  $('#sign-up form').fadeIn('slow');
  return false;
});
$('<p><a href="http://acko.net/?width=400&amp;height=300&amp;TB_iframe=true" class="thickbox">Woot woot</a></p>').appendTo('body');
TB_init();
$('<input type="text" name="colorfield" id="colorfield" value="" />').appendTo('body');
$('#colorpicker').farbtastic('#colorfield');

(note that the usage above of thickbox is in fact not sanctioned , and thickbox does not support attaching itself to run-time created objects... the only reason it worked was because there were no existing thickbox links, and I only called TB_init() once)

29 Mar 10:54

Watch on Google Video...

Ack! I'm trying to provide a link to the video on Google of the presentation, but the comment submission form is calling me a spammer and telling me to go away!

Hmm... maybe it will work if I praise you for a very informative and exciting presentation and tell you it inspired me to take a closer look at jQuery.

Okay, let's try again.

http://video.google.com/videoplay?docid=8359290939840291444&hl=en

16 Oct 07:30

Yours page

Your page is beutiful. I mos liked this colors. Relly good job

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <b> <dd> <dl> <dt> <i> <li> <ol> <u> <ul> <img> <em> <p> <br> <span> <div> <h2> <h3> <abbr> <small> <table> <tr> <td> <strong> <acronym> <th> <blockquote>
  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options