Making/finding html5 validator bookmarklet

后端 未结 4 613
独厮守ぢ
独厮守ぢ 2021-01-18 23:53

I want to find or make a bookmarklet that will validate the html content of a currently viewed page using the W3C HTML 5 validator.

I have found two bookmarklets and

4条回答
  •  执笔经年
    2021-01-19 00:38

    I was also getting the 'Sorry! This document cannot be checked.' error, resolved it by adding an accept-charset "utf-8" to the form attributes.

    In the function that creates the form element add the following line: form.acceptCharset = "utf-8";

    It worked for me.

提交回复
热议问题