input field should allow to enter numbers only in range -9.99 .. 99.99
I tried page below in desktop and mobile Chrome but it allows to enter big numbers, for example 99999
How to fix this using html5 ? I can for use of Chrome only it this is required.
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<input id="Soiduaeg" name="Soiduaeg" value="" maxlength="5" type="number" pattern="[0-9]+([\.|,][0-9]+)?">
</body>
</html>