Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Azardi Online can be used to read the file using the browser. The built-in or add-in console can be used from there to debug. Or a console shim can be created:</p> <pre><code>if(!console) { console = { "_log" : [], "log" : function() { var arr = []; for ( var i = 0; i &lt; arguments.length; i++ ) { arr.push( arguments[ i ] ); } this._log.push( arr.join( ", ") ); }, "trace" : function() { var stack; try { throw new Error(); } catch( ex ) { stack = ex.stack; } console.log( "console.trace()\n" + stack.split( "\n" ).slice( 2 ).join( " \n" ) ); }, "dir" : function( obj ) { console.log( "Content of " + obj ); for ( var key in obj ) { var value = typeof obj[ key ] === "function" ? "function" : obj[ key ]; console.log( " -\"" + key + "\" -&gt; \"" + value + "\"" ); } }, "show" : function() { alert( this._log.join( "\n" ) ); this._log = []; } }; window.onerror = function( msg, url, line ) { console.log("ERROR: \"" + msg + "\" at \"" + "\", line " + line); } window.addEventListener( "touchstart", function( e ) { if( e.touches.length === 3 ) { console.show(); } } ); } </code></pre> <p><strong>References</strong> </p> <ul> <li><p><a href="http://azardi.infogridpacific.com/AZARDIOnlineHelp.html" rel="nofollow">Azardi Online</a></p></li> <li><p><a href="http://www.w3.org/wiki/HTML/Attributes/_Global#Event-handler_Attributes" rel="nofollow">Event Handler Attributes</a></p></li> <li><p><a href="http://eclipsesource.com/blogs/2012/08/14/debugging-javascript-on-android-and-ios/" rel="nofollow">Debugging JavaScript on Android and iOS</a></p></li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload