if (window == top) {
  var d = window.document;
  (function () {
    try {
      d.documentElement.doScroll('left');
    } catch (e) {
      setTimeout(arguments.callee, 50);
      return;
    }
    // Dom is ready, run events
    Click.domready.run();
  })();
} else {
  var d = document;
  (function () {
    if (d.body==null) {
      setTimeout(arguments.callee, 50);
      return;
    } 
    // Dom is ready, run events
    Click.domready.run();
  })();
}

-- 
View this message in context: 
http://n2.nabble.com/DateField-not-working-in-IE-7-tp4425087p4454155.html
Sent from the click-development mailing list archive at Nabble.com.

Reply via email to