Tutorials References Menu

W3.JS Downloads

How To Download and Use W3.JS


Download W3.JS

Download the latest version from this link: https://www.w3schools.com/lib/w3.js


W3.JS is Free

W3.JS is free to use. No license is necessary.


How To use W3.JS

To use W3.JS, just add a link to "w3.js" in your web pages:

Example

<!DOCTYPE html>
<html>
<title>My Web</title>

<script src="https://www.w3schools.com/lib/w3.js"></script>
Try It Yourself » With CSS »

Or download w3.js and run it from your own web site:

Example

<!DOCTYPE html>
<html>
<title>My Web</title>

<script src="w3.js"></script>
Try It Yourself » With CSS »

If you put w3.js in a subfolder, add the folder name between slashes:

Example

<!DOCTYPE html>
<html>
<title>My Web</title>

<script src="/foldername/w3.js"></script>

If you place w3.js at the root of your web, add a slash:

Example

<!DOCTYPE html>
<html>
<title>My Web</title>

<script src="/w3.js"></script>


Changelog (Latest Versions)

Version Description
1.04 Changed innerHTML to innerText in w3.filterHTML and w3.sortHTML.
1.03 HTML Include now continues to the next include when the page is not found.
1.01 Added slideshow.
1.0 January 2018.