Атрибут novalidate

Описание

Если у input'ов есть атрибут required или pattern, то атрибут novalidate просто проигнорирует их.

Синтаксис

<form novalidate>...</form>

Пример

<!DOCTYPE html>
<html lang='ru'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Document</title>
</head>
<body>
<form action='/html/result-send' novalidate method='get' accept-charset='utf-8'>
<input type='text' name='info' required>
<button type='submit'>Отправить</button>
</form>
</body>
</html>