Polyfills

The polyfills are JavaScript components that mimic the behaviour of HTML5 tags in browsers that do not recognized such tags. They provide backwards compatibility for HTML5 in browsers that do not support HTML5.

  • Auto-complete - Adds auto-complete functionality to specific text input fields by dynamically displaying a list of words that match the user's input.
  • Date picker - Dynamically generates a calendar interface for selecting a date in a form.
  • Expandable/collapsible content - The <details> and <summary> elements allows content to be expanded and collapsed.
  • Mathematical/scientific formula display - Emulates MathML support for browsers that do not have MathML support.
  • Persistent storage - The Web storage localStorage object is used to store data persistently (no expiration date).
  • Progress bar - The <progress> element displays the progress of a task.
  • Slider Control - The <input type="range" /> element displays a slider control bar.