input pattern Attribute - An <input> element with type="search" that CANNOT contain the following characters: ' or " - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input

Description

input pattern Attribute - An <input> element with type="search" that CANNOT contain the following characters: ' or "

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<form action="/action_page.php">
  Search: <input type="search" name="search" pattern="[^'\x22]+" title="Invalid input">
  <input type="submit">
</form><!--from  www .j a v a 2s.  co m-->

</body>
</html>

Related Tutorials