Skip to main content

Initialization

This guide will give you detailed instructions on how to create Booking on a page to enrich your application with rich features of this tool. Take the following steps to get a ready-to-use component:

  1. Include the Booking source files on a page.
  2. Create a container for Booking.
  3. Initialize Booking with a constructor.

Including source files

Download the package and unpack it into a folder of your project.

To create Booking, you need to include 2 source files on your page:

  • booking.js
  • booking.css

Make sure that you set correct relative paths to the source files:

index.html
<script type="text/javascript" src="./dist/booking.js"></script>  
<link rel="stylesheet" href="./dist/booking.css">

Creating container

Add a container for Booking and give it an ID, for example "root":

index.html
<div id="root"></div>

Initializing Booking

Initialize Booking using the booking.Booking constructor. It takes two parameters:

  • an HTML container (the ID of the HTML container)
  • an object with configuration properties. See the full list here
index.html
// create Booking
new booking.Booking("#root", {
// configuration properties
});

Configuration properties

List of properties here

Example

In this snippet you can see how to initialize JavaScript Booking with the initial settings:

[TODO]!!! Заменить ссылку на сниппет с инициализацией