Older versions of iOS allowed you to enable the Safari debug console (settings -> safari-> advanced -> debug console). It was convenient for reporting errors, etc. If you are a Mac user, apparently there is a good interface for this.
If you have a Safari desktop, you can also fake a user agent: http://www.dummies.com/how-to/content/how-to-activate-user-agent-switcher-in-safari.html , this Allows you to use web debugging tools to see what is happening.
Alternatively, you can create the Debug panel in your web browser and capture the console.log function so that you can see errors, etc.
Example:
<div id="debug-info"></div>
<script>
(function(){
var oldLog = console.log;
console.log = function (message) {
oldLog.apply(console, arguments);
$('#debug-info').prepend('<p>'+message+'</p>')
};
})();
</script>
source
share