Category: Javascript

Javascript validate email

The Javascript email validation function below will return true if email is correct, false – otherwise.
Read more »

Javascript url decode, encode

You can use this Javascript to encode / decode url parameters. Script is fully compatible with UTF-8 encoding. Read more »

Javascript cookies

Here you will find an object with methods to save, read and erase cookies. Using these methods you can manipulate cookies on your site.
Read more »

Javascript UTF-8

The encoding known today as UTF-8 was invented by Ken Thompson. UTF-8 is a variable-length character encoding for Unicode. It can represent any character in the Unicode standard, yet is backwards compatible with ASCII. Read more »

Javascript base64

This javascript code is used to encode / decode data using base64 (this encoding is designed to make binary data survive transport through transport layers that are not 8-bit clean). Script is fully compatible with UTF-8 encoding. You can use base64 encoded data as simple encryption mechanism. Read more »