Use Firebug tool to debug the page on iPad

Use Firebug tool to debug the page on iPad
How to debug a page on iPad?

When using iOS 5, you can open the console in the developer tools in Safari on the iPad and view the log print information of console.log for debugging. However, this item cannot be found after upgrading to iOS 6. Here you can use the firebug tool to debug the page.

Add in head: <script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>

Then add debug=true to the html, and the firebug debugging tool console will appear when you open the page.

This can be used not only for iPad but also for debugging tools on PC. However, general browsers have their own console debugging information, so Firebug is not needed.

as follows:

Copy code
The code is as follows:

<html debug=true>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>title</title>
<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
</head>
<body>
Page content
</body>
</html><span style="white-space: pre;"> </span>

<<:  Common shell script commands and related knowledge under Linux

>>:  MySQL partitions existing tables in the data table

Recommend

Complete steps to quickly build a vue3.0 project

Table of contents 1. We must ensure that the vue/...

Teach you a trick to achieve text comparison in Linux

Preface In the process of writing code, we will i...

17 JavaScript One-Liners

Table of contents 1. DOM & BOM related 1. Che...

HTML Tutorial: Collection of commonly used HTML tags (5)

Related articles: Beginners learn some HTML tags ...

How to restore single table data using MySQL full database backup data

Preface When backing up the database, a full data...

Design theory: the basics of font design

<br />Words are the inevitable product of hu...

HTML hyperlinks explained in detail

Hyperlink Hyperlinks are the most frequently used ...

CentOS6.9+Mysql5.7.18 source code installation detailed tutorial

CentOS6.9+Mysql5.7.18 source code installation, t...

Installation process of MySQL5.7.22 on Mac

1. Use the installation package to install MySQL ...

MySQL aggregate function sorting

Table of contents MySQL result sorting - Aggregat...

Summary of MySQL lock knowledge points

The concept of lock ①. Lock, in real life, is a t...

Vue component encapsulates sample code for uploading pictures and videos

First download the dependencies: cnpm i -S vue-uu...

How to set and get the number of Mysql connections

Get the number of connections --- Get the maximum...