Javascript

From UVOO Tech Wiki
Jump to navigation Jump to search

Sometimes you need two or three useful libraries to get a job done. Here are a few.

Graphical Libraries

I prefer highcharts but there is a cost for non-commercial use.

They have a pre-revenue license for start-ups. See https://shop.highsoft.com/highcharts/high-five-license?options=cart

Validation Libraries

More Validation & Methods

Pure HTML5

<form action="/action_page.php">
  Country code: <input type="text" name="country_code" pattern="[A-Za-z]{3} required" title="Three letter country code">
  <input type="submit">
</form>

AJAX

References