ie-console.js 536 B

12345678910111213141516171819
  1. // var ie_console_alertFallback = true;
  2. // var ie_console_divFallback = true;
  3. if (typeof console === "undefined" || typeof console.log === "undefined") {
  4. console = {};
  5. if (typeof ie_console_divFallback != "undefined") {
  6. console.log = function(msg) {
  7. $('#ie_console_debug_div').append(msg);
  8. $('#ie_console_debug_div').append("<br>");
  9. }
  10. } else if (typeof ie_console_alertFallback != "undefined" ) {
  11. console.log = function(msg) {
  12. alert(msg);
  13. };
  14. } else {
  15. console.log = function() {};
  16. }
  17. }