Monday, April 30, 2012

jQuery delay anything other than jQuery's effect functions

Stefan Siebel says here:
"Taking a closer look at the delay function showed me that only functions that are queued in jQuery’s default 'fx' queue are delayed by a delay-call like the one [here]. If you want to delay e.g. the trigger function you either need to queue it in the fx-queue or in a separate queue."

Friday, April 20, 2012

jQuery fadeIn and IE7-8 opacity

FadeIn on an absolutely positioned div with opacity=80 wasn't working on IE7-8.  Found the solution on stackoverflow:  set filter on the element before calling fadeIn.  For example:

$("#testdiv").css('filter', 'alpha(opacity=80)').fadeIn();

Friday, April 13, 2012

Courses at Tuts+

Courses at Tuts+ cover various topics, including html & css, html5 & css3, jquery, photoshop, web design, photography.

Wednesday, April 11, 2012

10 Rare HTML Tags You Really Should Know

See 10 Rare HTML Tags You Really Should Know (with descriptions and live demos):
  • <cite>
  • <optgroup>
  • <acronym>
  • <optgroup>
  • <address>
  • <ins> and <del>
  • <label>
  • <fieldset>
  • <abbr>
  • rel
  • <wbr>