Documentation
Getting started
Steps to set upInstall Live HTML Validator for: Google Chrome or Firefox (not yet available)
- Set up your tool:
Browser plugin API
Description
Validation of HTML can be performed without reloading or after reloading the browser page, but the connection to the server must be established in any case if you use «Auto validation».
The server requires use the WebSocket protocol.Server
←→
Client (browser plugin)
Request data
Structure
{
action: value,
}
Key | Required | Type | Description |
---|---|---|---|
action | required | String | This value validation_html - for live HTML validation. You need to enable the "Auto validation" switch in the browser plugin settings. |
Examples
Live HTML validation of browser page
const data = {
action: 'validation_html'
};
// client.send(JSON.stringify(data));