Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 27th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. two .on event handlers, only 1 firing
  2. $('body').on("blur", ".required", {requiredBlur: true}, checkData);
  3. $('body').on("click", 'input[name="personality"]', {personalityClick:true}, checkData);
  4.        
  5. $('.required').live('change', {requiredBlur: true}, checkData);
  6. $('input[name="personality"]').live('click', {personalityClick: true}, checkData)