Filter (Advanced Search)
Downloads
0
Views
228
Video

Video is not available... Embedded is previous playlist.

Details

The <input type="week"> allows the user to select a week and year.

Depending on browser support, a date picker can show up in the input field.


<!DOCTYPE html>
<html>
<body>

<h1>Display a Week Input Control</h1>

<p>The <strong>input type="week"</strong> allows the user to select a week and year.</p>

<p>If the browser supports it, a date picker pops up when entering the input field.</p>

<form action="/php/inputWeek.php" method="get">
  <label for="week">Select a week:</label>
  <input type="week" id="week" name="week">
  <input type="submit" value="Submit">
</form>

<p><strong>Note:</strong> type="week" is not supported in Firefox, Safari or Internet Explorer 11.</p>

</body>
</html>



Ad