Friday, July 16, 2010

Ajax Activity Indicator without GIF Animations



Do you need a non-image Ajax activity indicator?
Try ActivityIndicator class of Ajax Islands framework. Take a look at this tutorial.

Thursday, July 15, 2010

function functionOne() vs functionTwo = function()

Do you know the difference between these two syntax in Javascript:

function functionOne() {
  //function body
}

functionTwo = function() {
  // function body
}

var funcionTwo = function() {
  // function body 
}

Just check this thread. :)