Skip to content Skip to sidebar Skip to footer

Does Html Tag Name Has A Max Size ( Length )

i do want to build a validator for HTML tagname , vdAPI.get({module:'html',subject:'tag'}).validator=function (tag){ return !vdAPI.nottags.contains(tag) && (ta

Solution 1:

From the w3.org:

The algorithm described below places no limit on the depth of the DOM tree generated, or on the length of tag names, attribute names, attribute values, Text nodes, etc. While implementors are encouraged to avoid arbitrary limits, it is recognized that practical concerns will likely force user agents to impose nesting depth constraints.

Post a Comment for "Does Html Tag Name Has A Max Size ( Length )"