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

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 16  |  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. In IE7 SomeElement : visible not working
  2. function MangeEmptyRecordList() {
  3.     var leftPanel = $('#' + firstContainer);
  4.     var rightPanel = $('#' + secondContainer);
  5.     var firstContainerList = leftPanel.find('li:visible');
  6.     if (firstContainerList.length > 0) {
  7.         $("#emptyFirstContainer").hide();
  8.     }
  9.     else {
  10.         $("#emptyFirstContainer").show();
  11.     }
  12. }