An open API service indexing awesome lists of open source software.

https://github.com/r32/ie-mlog

a simple console.log for IWebBrowser(Embeded IE)
https://github.com/r32/ie-mlog

iwebbrowser

Last synced: 5 months ago
JSON representation

a simple console.log for IWebBrowser(Embeded IE)

Awesome Lists containing this project

README

          

mini log
------

[usage](bin/index.html) Press `Shift + F12` to switch On/Off.

```bash
Mini log[ver:{{Macros.gitVersion()}}] for IWebBrowser(Embeded IE)
cls : clear output
$("s") : document.querySelector("s")
$$("s") : document.querySelectorAll("s")
```

### Configuration for haxe projects

installs from git repo

```bash
git clone https://github.com/R32/ie-mlog.git ie-mlog
haxelib dev ie-mlog ie-mlog
```

HTML : put mlog.js before your main.js

```html



```

haxe

```haxe
class Main {
static function main() {
haxe.Log.trace = MLog.log;
trace("hello world!");
}
}
```